Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nodemanager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Odysseus
nodemanager
Commits
a396ec6b
Commit
a396ec6b
authored
May 22, 2024
by
vicotor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update docker-compose
parent
54f6d8e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
30 deletions
+27
-30
config.toml
config.toml
+3
-3
docker-compose.yml
docker/docker-compose.yml
+24
-27
No files found.
config.toml
View file @
a396ec6b
...
@@ -5,10 +5,10 @@ metrics_port = 28010
...
@@ -5,10 +5,10 @@ metrics_port = 28010
private_key
=
"E671C143A110C239B563F702E9F4017CA6B2B2912F675EED9AA4FED684EB30CC"
private_key
=
"E671C143A110C239B563F702E9F4017CA6B2B2912F675EED9AA4FED684EB30CC"
standard_task_file
=
"standardtask.json"
standard_task_file
=
"standardtask.json"
worker_multiple
=
2
worker_multiple
=
2
worker_signature_expired_time
=
1
worker_signature_expired_time
=
1
0
[mongodb]
[mongodb]
url
=
"mongodb://
0.0.0.0
:27017"
url
=
"mongodb://
127.0.0.1
:27017"
database
=
"ai"
database
=
"ai"
user
=
"admin"
user
=
"admin"
password
=
"admin"
password
=
"admin"
...
@@ -24,7 +24,7 @@ db=0
...
@@ -24,7 +24,7 @@ db=0
#user="root"
#user="root"
#password="12345678"
#password="12345678"
#database="liuxuzhong"
#database="liuxuzhong"
host
=
"1
8.167.203.17
"
host
=
"1
27.0.0.1
"
port
=
3306
port
=
3306
user
=
"ai"
user
=
"ai"
password
=
"RFnnKHRar5xk7TEF"
password
=
"RFnnKHRar5xk7TEF"
...
...
docker/docker-compose.yml
View file @
a396ec6b
...
@@ -4,33 +4,6 @@ networks:
...
@@ -4,33 +4,6 @@ networks:
driver
:
bridge
driver
:
bridge
services
:
services
:
influxdb
:
image
:
influxdb:1.8
ports
:
-
"
8086:8086"
environment
:
-
INFLUXDB_DB=k6
grafana
:
image
:
grafana/grafana:9.3.8
ports
:
-
"
3000:3000"
environment
:
-
GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
-
GF_AUTH_ANONYMOUS_ENABLED=true
-
GF_AUTH_BASIC_ENABLED=false
volumes
:
-
./grafana:/etc/grafana/provisioning/
k6
:
image
:
grafana/k6:latest
ports
:
-
"
6565:6565"
environment
:
-
K6_OUT=influxdb=http://influxdb:8086/k6
volumes
:
-
./scripts:/scripts
mysql
:
mysql
:
container_name
:
"
ai-mysql"
container_name
:
"
ai-mysql"
...
@@ -66,6 +39,7 @@ services:
...
@@ -66,6 +39,7 @@ services:
-
"
6379:6379"
-
"
6379:6379"
volumes
:
volumes
:
-
"
/etc/localtime:/etc/localtime"
-
"
/etc/localtime:/etc/localtime"
-
"
./redis/conf/redis.conf:/etc/redis/redis.conf"
zookeeper
:
zookeeper
:
image
:
library/zookeeper
image
:
library/zookeeper
container_name
:
zookeeper
container_name
:
zookeeper
...
@@ -101,4 +75,27 @@ services:
...
@@ -101,4 +75,27 @@ services:
-
KAFKA_CLUSTERS_0_NAME=kafka
-
KAFKA_CLUSTERS_0_NAME=kafka
-
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092
-
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092
mongo
:
image
:
mongo:latest
container_name
:
mongo
environment
:
MONGO_INITDB_ROOT_USERNAME
:
admin
MONGO_INITDB_ROOT_PASSWORD
:
admin
ports
:
-
"
0.0.0.0:27017:27017"
volumes
:
-
"
./mongo/data:/data/operator"
-
"
./mongo/config:/data/configdb"
mongo-express
:
image
:
mongo-express:latest
container_name
:
mongo-express
environment
:
ME_CONFIG_MONGODB_ADMINUSERNAME
:
admin
ME_CONFIG_MONGODB_ADMINPASSWORD
:
admin
ME_CONFIG_MONGODB_SERVER
:
mongo
ME_CONFIG_MONGODB_PORT
:
"
27017"
ports
:
-
"
0.0.0.0:8081:8081"
depends_on
:
-
mongo
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment