mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-12-27 15:14:19 +00:00
chore(docker): delete docker-compose-no-es (#39)
This commit is contained in:
parent
88fb0a3782
commit
13c93694cd
@ -1,14 +0,0 @@
|
||||
#
|
||||
# Copyright 2023 Ant Group CO., Ltd.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
||||
# in compliance with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
||||
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
||||
# or implied.
|
||||
#
|
||||
|
||||
docker-compose -f docker-compose-no-es.yml up -d
|
||||
@ -1,46 +0,0 @@
|
||||
version: "3.7"
|
||||
services:
|
||||
openspg:
|
||||
restart: always
|
||||
image: baifuyu/openspg:latest
|
||||
container_name: release-openspg
|
||||
ports:
|
||||
- "8887:8887"
|
||||
depends_on:
|
||||
- mysql
|
||||
- tugraph
|
||||
command: [
|
||||
'--cloudext.repository.impl.jdbc.host=mysql',
|
||||
'--builder.operator.python.exec=/usr/bin/python3.8',
|
||||
'--builder.operator.python.paths=/usr/lib/python3.8/site-packages;/usr/local/lib/python3.8/dist-packages;'
|
||||
]
|
||||
environment:
|
||||
- PYTHONPATH=/usr/lib/python3.8/site-packages:/usr/local/lib/python3.8/dist-packages
|
||||
|
||||
mysql:
|
||||
restart: always
|
||||
image: baifuyu/openspg-mysql:latest
|
||||
container_name: release-openspg-mysql
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
LANG: C.UTF-8
|
||||
ports:
|
||||
- "3306:3306"
|
||||
command: [
|
||||
'--character-set-server=utf8mb4',
|
||||
'--collation-server=utf8mb4_general_ci'
|
||||
]
|
||||
|
||||
tugraph:
|
||||
image: tugraph/tugraph-runtime-centos7:4.0.1
|
||||
container_name: release-openspg-tugraph
|
||||
# default username is admin and default password is 73@TuGraph
|
||||
ports:
|
||||
- "7070:7070"
|
||||
- "9090:9090"
|
||||
command: lgraph_server
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,19 +1,44 @@
|
||||
version: "3.7"
|
||||
services:
|
||||
openspg:
|
||||
extends:
|
||||
file: docker-compose-no-es.yml
|
||||
service: openspg
|
||||
restart: always
|
||||
image: baifuyu/openspg:latest
|
||||
container_name: release-openspg
|
||||
ports:
|
||||
- "8887:8887"
|
||||
depends_on:
|
||||
- mysql
|
||||
- tugraph
|
||||
command: [
|
||||
'--cloudext.repository.impl.jdbc.host=mysql',
|
||||
'--builder.operator.python.exec=/usr/bin/python3.8',
|
||||
'--builder.operator.python.paths=/usr/lib/python3.8/site-packages;/usr/local/lib/python3.8/dist-packages;'
|
||||
]
|
||||
environment:
|
||||
- PYTHONPATH=/usr/lib/python3.8/site-packages:/usr/local/lib/python3.8/dist-packages
|
||||
|
||||
mysql:
|
||||
extends:
|
||||
file: docker-compose-no-es.yml
|
||||
service: mysql
|
||||
restart: always
|
||||
image: baifuyu/openspg-mysql:latest
|
||||
container_name: release-openspg-mysql
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
LANG: C.UTF-8
|
||||
ports:
|
||||
- "3306:3306"
|
||||
command: [
|
||||
'--character-set-server=utf8mb4',
|
||||
'--collation-server=utf8mb4_general_ci'
|
||||
]
|
||||
|
||||
tugraph:
|
||||
extends:
|
||||
file: docker-compose-no-es.yml
|
||||
service: tugraph
|
||||
image: tugraph/tugraph-runtime-centos7:4.0.1
|
||||
container_name: release-openspg-tugraph
|
||||
# default username is admin and default password is 73@TuGraph
|
||||
ports:
|
||||
- "7070:7070"
|
||||
- "9090:9090"
|
||||
command: lgraph_server
|
||||
|
||||
elasticsearch:
|
||||
image: elasticsearch:8.5.3
|
||||
|
||||
@ -1,14 +0,0 @@
|
||||
#
|
||||
# Copyright 2023 Ant Group CO., Ltd.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
||||
# in compliance with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
||||
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
||||
# or implied.
|
||||
#
|
||||
|
||||
docker-compose -f docker-compose-no-es.yml up -d
|
||||
@ -1,32 +0,0 @@
|
||||
version: "3.7"
|
||||
services:
|
||||
mysql:
|
||||
restart: always
|
||||
image: mariadb:10.5.8
|
||||
container_name: test-openspg-mysql
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: openspg
|
||||
MYSQL_DATABASE: openspg
|
||||
TZ: Asia/Shanghai
|
||||
LANG: C.UTF-8
|
||||
volumes:
|
||||
- "./mysql/sqlscript:/docker-entrypoint-initdb.d"
|
||||
ports:
|
||||
- "3306:3306"
|
||||
command: [
|
||||
'--character-set-server=utf8mb4',
|
||||
'--collation-server=utf8mb4_general_ci'
|
||||
]
|
||||
|
||||
tugraph:
|
||||
image: tugraph/tugraph-runtime-centos7:4.0.1
|
||||
container_name: test-openspg-tugraph
|
||||
# default username is admin and default password is 73@TuGraph
|
||||
ports:
|
||||
- "7070:7070"
|
||||
- "9090:9090"
|
||||
command: lgraph_server
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,14 +1,32 @@
|
||||
version: "3.7"
|
||||
services:
|
||||
mysql:
|
||||
extends:
|
||||
file: docker-compose-no-es.yml
|
||||
service: mysql
|
||||
restart: always
|
||||
image: mariadb:10.5.8
|
||||
container_name: test-openspg-mysql
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: openspg
|
||||
MYSQL_DATABASE: openspg
|
||||
TZ: Asia/Shanghai
|
||||
LANG: C.UTF-8
|
||||
volumes:
|
||||
- "./mysql/sqlscript:/docker-entrypoint-initdb.d"
|
||||
ports:
|
||||
- "3306:3306"
|
||||
command: [
|
||||
'--character-set-server=utf8mb4',
|
||||
'--collation-server=utf8mb4_general_ci'
|
||||
]
|
||||
|
||||
tugraph:
|
||||
extends:
|
||||
file: docker-compose-no-es.yml
|
||||
service: tugraph
|
||||
image: tugraph/tugraph-runtime-centos7:4.0.1
|
||||
container_name: test-openspg-tugraph
|
||||
# default username is admin and default password is 73@TuGraph
|
||||
ports:
|
||||
- "7070:7070"
|
||||
- "9090:9090"
|
||||
command: lgraph_server
|
||||
|
||||
|
||||
elasticsearch:
|
||||
image: elasticsearch:8.5.3
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user