You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/10/31 09:31:39 UTC

[inlong] branch master updated: [INLONG-6140][Docker] Decrease the docker-compose version to be compatible with more environments (#6337)

This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a62e9ddb [INLONG-6140][Docker] Decrease the docker-compose version to be compatible with more environments (#6337)
4a62e9ddb is described below

commit 4a62e9ddb8ddd6e011e9e9f628680e2174027927
Author: Charles Zhang <do...@apache.org>
AuthorDate: Mon Oct 31 17:31:33 2022 +0800

    [INLONG-6140][Docker] Decrease the docker-compose version to be compatible with more environments (#6337)
---
 docker/docker-compose/docker-compose.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docker/docker-compose/docker-compose.yml b/docker/docker-compose/docker-compose.yml
index 4401d6cba..023a96f02 100644
--- a/docker/docker-compose/docker-compose.yml
+++ b/docker/docker-compose/docker-compose.yml
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-version: '3.5'
+version: '2.3'
 
 services:
   mysql:
@@ -43,7 +43,7 @@ services:
     command: bin/pulsar standalone
 
   manager:
-    image: inlong/manager
+    image: inlong/manager:latest
     container_name: manager
     depends_on:
       mysql:
@@ -60,7 +60,7 @@ services:
       - AUDIT_PROXY_URL=audit:10081
 
   webisite:
-    image: inlong/dashboard
+    image: inlong/dashboard:latest
     container_name: dashboard
     depends_on:
       - manager