update compose
This commit is contained in:
parent
23d29fdbd5
commit
65f1b6001e
121
compose-dev.yaml
121
compose-dev.yaml
|
@ -16,12 +16,16 @@ services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
container_name: postgre-01
|
container_name: postgre-01
|
||||||
|
restart: always
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
networks:
|
||||||
|
- y9-share-net
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
restart: always
|
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: postgres
|
POSTGRES_USER: postgres
|
||||||
POSTGRES_PASSWORD: "11111111"
|
POSTGRES_PASSWORD: "12345678"
|
||||||
POSTGRES_DB: y9_public
|
POSTGRES_DB: y9_public
|
||||||
PGDATA: "/var/lib/postgresql/data/pgdata"
|
PGDATA: "/var/lib/postgresql/data/pgdata"
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -31,5 +35,118 @@ services:
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
db:
|
||||||
|
image: mysql:latest
|
||||||
|
container_name: mysql01
|
||||||
|
restart: always
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
networks:
|
||||||
|
- y9-share-net
|
||||||
|
ports:
|
||||||
|
- "3306:3306"
|
||||||
|
command: --default-authentication-plugin=caching_sha2_password
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: '12345678'
|
||||||
|
MYSQL_DATABASE: 'y9_public'
|
||||||
|
volumes:
|
||||||
|
- d:/docker-data/mysql:/var/lib/mysql
|
||||||
|
- d:/docker-config/mysql-init:/docker-entrypoint-initdb.d
|
||||||
|
healthcheck:
|
||||||
|
#test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
|
||||||
|
test: "mysql --user=root --password=12345678 --execute='show databases;'"
|
||||||
|
interval: 5s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 8
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis:latest
|
||||||
|
container_name: redis01
|
||||||
|
restart: always
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
networks:
|
||||||
|
- y9-share-net
|
||||||
|
ports:
|
||||||
|
- "6379:6379"
|
||||||
|
command: redis-server --requirepass "12345678"
|
||||||
|
volumes:
|
||||||
|
- d:/docker-data/redis:/data
|
||||||
|
|
||||||
|
elasticsearch:
|
||||||
|
image: elasticsearch:8.10.2
|
||||||
|
container_name: elastic01
|
||||||
|
restart: always
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
networks:
|
||||||
|
- y9-share-net
|
||||||
|
ports:
|
||||||
|
- '9200:9200'
|
||||||
|
- '9300:9300'
|
||||||
|
volumes:
|
||||||
|
- d:/docker-data/es:/usr/share/elasticsearch/data
|
||||||
|
environment:
|
||||||
|
- discovery.type=single-node
|
||||||
|
- xpack.security.enabled=false
|
||||||
|
labels:
|
||||||
|
org.springframework.boot.service-connection: elasticsearch
|
||||||
|
|
||||||
|
kafka:
|
||||||
|
image: bitnami/kafka:latest
|
||||||
|
container_name: kafka01
|
||||||
|
restart: always
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
networks:
|
||||||
|
- y9-share-net
|
||||||
|
ports:
|
||||||
|
- "9092:9092"
|
||||||
|
- "9094:9094"
|
||||||
|
environment:
|
||||||
|
- KAFKA_CFG_NODE_ID=0
|
||||||
|
- KAFKA_CFG_PROCESS_ROLES=controller,broker
|
||||||
|
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092,CONTROLLER://:9093,EXTERNAL://0.0.0.0:9094
|
||||||
|
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092,EXTERNAL://localhost:9094
|
||||||
|
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CONTROLLER:PLAINTEXT,EXTERNAL:PLAINTEXT,PLAINTEXT:PLAINTEXT
|
||||||
|
- KAFKA_CFG_CONTROLLER_LISTENER_NAMES=CONTROLLER
|
||||||
|
- KAFKA_CFG_CONTROLLER_QUORUM_VOTERS=0@kafka:9093
|
||||||
|
volumes:
|
||||||
|
- d:/docker-data/kafka:/bitnami/kafka
|
||||||
|
|
||||||
|
nacos:
|
||||||
|
image: nacos/nacos-server:v2.2.3
|
||||||
|
container_name: nacos01
|
||||||
|
restart: always
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
networks:
|
||||||
|
- y9-share-net
|
||||||
|
ports:
|
||||||
|
- "8848:8848"
|
||||||
|
- "9848:9848"
|
||||||
|
depends_on:
|
||||||
|
db:
|
||||||
|
condition: service_healthy
|
||||||
|
environment:
|
||||||
|
- PREFER_HOST_MODE=hostname
|
||||||
|
- MODE=standalone
|
||||||
|
- SPRING_DATASOURCE_PLATFORM=mysql
|
||||||
|
- MYSQL_SERVICE_HOST=db
|
||||||
|
- MYSQL_SERVICE_DB_NAME=nacos
|
||||||
|
- MYSQL_SERVICE_PORT=3306
|
||||||
|
- MYSQL_SERVICE_USER=root
|
||||||
|
- MYSQL_SERVICE_PASSWORD=12345678
|
||||||
|
- MYSQL_SERVICE_DB_PARAM=characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true
|
||||||
|
- NACOS_AUTH_ENABLE=true
|
||||||
|
- NACOS_AUTH_IDENTITY_KEY=nacos
|
||||||
|
- NACOS_AUTH_IDENTITY_VALUE=nacos
|
||||||
|
- NACOS_AUTH_TOKEN=VGhpc0lzTXlDdXN0b21TZWNyZXRLZXkwMTIzNDU2Nzg=
|
||||||
|
volumes:
|
||||||
|
- d:/docker-data/nacos-logs:/home/nacos/logs
|
||||||
|
|
||||||
|
networks:
|
||||||
|
y9-share-net:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,78 +0,0 @@
|
||||||
version: '3.8'
|
|
||||||
name: demo01-dev
|
|
||||||
services:
|
|
||||||
db:
|
|
||||||
image: mysql:latest
|
|
||||||
container_name: mysql01
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "3309:3306"
|
|
||||||
command: --default-authentication-plugin=mysql_native_password
|
|
||||||
environment:
|
|
||||||
MYSQL_ROOT_PASSWORD: 'Y9i-83204585'
|
|
||||||
MYSQL_DATABASE: 'demo01'
|
|
||||||
volumes:
|
|
||||||
- d:/docker-data/mysql:/var/lib/mysql
|
|
||||||
|
|
||||||
postgres:
|
|
||||||
image: postgres
|
|
||||||
container_name: postgre-01
|
|
||||||
ports:
|
|
||||||
- "5432:5432"
|
|
||||||
restart: always
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: "11111111"
|
|
||||||
POSTGRES_DB: y9_public
|
|
||||||
PGDATA: "/var/lib/postgresql/data/pgdata"
|
|
||||||
volumes:
|
|
||||||
- d:/docker-data/postgres:/var/lib/postgresql/data
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -U postgres -d y9_public"]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:latest
|
|
||||||
container_name: redis01
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "7379:6379"
|
|
||||||
command: redis-server --requirepass "y9i-83204585"
|
|
||||||
volumes:
|
|
||||||
- d:/docker-data/redis:/data
|
|
||||||
|
|
||||||
elasticsearch:
|
|
||||||
image: elasticsearch:8.8.1
|
|
||||||
container_name: elastic01
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- '9200:9200'
|
|
||||||
- '9300:9300'
|
|
||||||
volumes:
|
|
||||||
- d:/docker-data/es:/usr/share/elasticsearch/data
|
|
||||||
environment:
|
|
||||||
- discovery.type=single-node
|
|
||||||
- xpack.security.enabled=false
|
|
||||||
labels:
|
|
||||||
org.springframework.boot.service-connection: elasticsearch
|
|
||||||
|
|
||||||
kafka:
|
|
||||||
image: bitnami/kafka:3.5
|
|
||||||
container_name: kafka01
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "9092:9092"
|
|
||||||
- "9094:9094"
|
|
||||||
environment:
|
|
||||||
- ALLOW_PLAINTEXT_LISTENER=yes
|
|
||||||
- KAFKA_ENABLE_KRAFT=yes
|
|
||||||
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092,CONTROLLER://:9093,EXTERNAL://:9094
|
|
||||||
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092,EXTERNAL://localhost:9094
|
|
||||||
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CONTROLLER:PLAINTEXT,EXTERNAL:PLAINTEXT,PLAINTEXT:PLAINTEXT
|
|
||||||
- KAFKA_CFG_INTER_BROKER_LISTENER_NAME=PLAINTEXT
|
|
||||||
volumes:
|
|
||||||
- d:/docker-data/kafka:/bitnami/kafka
|
|
||||||
|
|
||||||
|
|
|
@ -54,4 +54,4 @@ spring:
|
||||||
docker:
|
docker:
|
||||||
compose:
|
compose:
|
||||||
enabled: false
|
enabled: false
|
||||||
file: docker-compose.yaml
|
file: docker-dev.yaml
|
||||||
|
|
Loading…
Reference in New Issue