forked from DevOps/deploy.stack
modify(directory): directory modify
This commit is contained in:
97
dbSer/dbs-dev.stack.yaml
Normal file
97
dbSer/dbs-dev.stack.yaml
Normal file
@@ -0,0 +1,97 @@
|
||||
# docker compose -p dbs -f ./dbSer/dbs-dev.stack.yaml up -d
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
redis:
|
||||
image: redis:6-alpine
|
||||
container_name: Dev-Redis
|
||||
restart: always
|
||||
command: "--requirepass Kevin#0412&Redis"
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
ports:
|
||||
- "6379:6379"
|
||||
networks:
|
||||
DevNet:
|
||||
ipv4_address: 172.22.10.205
|
||||
|
||||
percona:
|
||||
image: percona:8.0.35-27
|
||||
container_name: Dev-Percona
|
||||
restart: always
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=Kevin#0412&Mysql
|
||||
volumes:
|
||||
- mysql_data:/var/lib/mysql
|
||||
- mysql_logs:/var/log/mysql
|
||||
ports:
|
||||
- "3306:3306"
|
||||
networks:
|
||||
DevNet:
|
||||
ipv4_address: 172.22.10.206
|
||||
|
||||
etcd:
|
||||
image: quay.io/coreos/etcd:v3.5.0
|
||||
container_name: Dev-Etcd
|
||||
restart: always
|
||||
volumes:
|
||||
- etcd-data:/etcd-data
|
||||
ports:
|
||||
- 2379:2379
|
||||
networks:
|
||||
DevNet:
|
||||
ipv4_address: 172.22.10.207
|
||||
command:
|
||||
- etcd
|
||||
- --data-dir=/etcd-data
|
||||
- --listen-client-urls=http://0.0.0.0:2379
|
||||
- --advertise-client-urls=http://0.0.0.0:2379
|
||||
|
||||
postgre:
|
||||
image: postgres:16.2-bookworm
|
||||
container_name: Dev-postgre
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=Kevin#0412&PGSql
|
||||
volumes:
|
||||
- postgresql_data:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "5432:5432"
|
||||
networks:
|
||||
DevNet:
|
||||
ipv4_address: 172.22.10.208
|
||||
|
||||
mongo:
|
||||
image: mongo:5.0
|
||||
restart: always
|
||||
container_name: "Dev-Mongo"
|
||||
environment:
|
||||
- MONGO_INITDB_ROOT_USERNAME=root
|
||||
- MONGO_INITDB_ROOT_PASSWORD=Kevin#0412&Mongo
|
||||
volumes:
|
||||
- mongo_data:/data/db
|
||||
- mongo_configdb:/data/configdb
|
||||
ports:
|
||||
- "27017:27017"
|
||||
networks:
|
||||
DevNet:
|
||||
ipv4_address: 172.22.10.209
|
||||
|
||||
|
||||
volumes:
|
||||
mysql_data:
|
||||
mysql_logs:
|
||||
redis_data:
|
||||
etcd-data:
|
||||
postgresql_data:
|
||||
mongo_data:
|
||||
mongo_configdb:
|
||||
|
||||
networks:
|
||||
DevNet:
|
||||
name: DevNet
|
||||
driver: bridge
|
||||
ipam:
|
||||
driver: default
|
||||
config:
|
||||
- subnet: 172.22.10.0/24
|
||||
Reference in New Issue
Block a user