updated: 2024-11-13 10:53:23
This commit is contained in:
parent
6049d998c6
commit
66f9ae9da6
|
|
@ -4,7 +4,7 @@ services:
|
||||||
container_name: redis
|
container_name: redis
|
||||||
image: redis:7.2.4
|
image: redis:7.2.4
|
||||||
command: redis-server /etc/redis/redis.conf --appendonly yes --requirepass E798C60F9EADAA07
|
command: redis-server /etc/redis/redis.conf --appendonly yes --requirepass E798C60F9EADAA07
|
||||||
restart: Always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6379:6379"
|
||||||
volumes:
|
volumes:
|
||||||
|
|
@ -18,7 +18,7 @@ services:
|
||||||
postgres:
|
postgres:
|
||||||
container_name: postgres
|
container_name: postgres
|
||||||
image: postgres:16.2
|
image: postgres:16.2
|
||||||
restart: Always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ services:
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
container_name: elasticsearch
|
container_name: elasticsearch
|
||||||
image: "ccr.ccs.tencentyun.com/wwww/public-app:elasticsearch-7.9.2"
|
image: "ccr.ccs.tencentyun.com/wwww/public-app:elasticsearch-7.9.2"
|
||||||
restart: Always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- node.name=elasticsearch
|
- node.name=elasticsearch
|
||||||
- cluster.name=es-docker-cluster
|
- cluster.name=es-docker-cluster
|
||||||
|
|
@ -24,7 +24,7 @@ services:
|
||||||
|
|
||||||
logstash:
|
logstash:
|
||||||
container_name: logstash
|
container_name: logstash
|
||||||
restart: Always
|
restart: always
|
||||||
image: "ccr.ccs.tencentyun.com/wwww/public-app:logstash-7.9.2"
|
image: "ccr.ccs.tencentyun.com/wwww/public-app:logstash-7.9.2"
|
||||||
volumes:
|
volumes:
|
||||||
- ./logstash.conf:/usr/share/logstash/pipeline/logstash.conf
|
- ./logstash.conf:/usr/share/logstash/pipeline/logstash.conf
|
||||||
|
|
@ -43,7 +43,7 @@ services:
|
||||||
|
|
||||||
kibana:
|
kibana:
|
||||||
container_name: kibana
|
container_name: kibana
|
||||||
restart: Always
|
restart: always
|
||||||
image: "ccr.ccs.tencentyun.com/wwww/public-app:kibana-7.9.2"
|
image: "ccr.ccs.tencentyun.com/wwww/public-app:kibana-7.9.2"
|
||||||
environment:
|
environment:
|
||||||
- ELASTICSEARCH_URL=http://elasticsearch:9200
|
- ELASTICSEARCH_URL=http://elasticsearch:9200
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
juno-minio:
|
juno-minio:
|
||||||
container_name: juno-minio
|
container_name: juno-minio
|
||||||
restart: Always
|
restart: always
|
||||||
image: docker-registry-1.ppapi.cn/minio/minio:RELEASE.2024-07-26T20-48-21Z
|
image: docker-registry-1.ppapi.cn/minio/minio:RELEASE.2024-07-26T20-48-21Z
|
||||||
command: ["minio", "server", "--console-address", ":9001", "/data1"]
|
command: ["minio", "server", "--console-address", ":9001", "/data1"]
|
||||||
ports:
|
ports:
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ services:
|
||||||
mysql:
|
mysql:
|
||||||
container_name: mysql
|
container_name: mysql
|
||||||
image: ccr.ccs.tencentyun.com/juno/public:mysql-8.0
|
image: ccr.ccs.tencentyun.com/juno/public:mysql-8.0
|
||||||
restart: Always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
TZ: Asia/Shanghai
|
TZ: Asia/Shanghai
|
||||||
MYSQL_ROOT_PASSWORD: rG8tAxtM9Js3
|
MYSQL_ROOT_PASSWORD: rG8tAxtM9Js3
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue