Docker Deployment
This article introduces the use of docker
to deploy the Apache ShenYu
gateway.
#
Start Apache ShenYu Admindocker pull apache/shenyu-admin:2.4.0docker network create shenyu
- use
h2
to store data:
docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
- use
MySQL
to store data, copy mysql-connector.jar to/$(your_work_dir)/ext-lib
:
docker run -v /${your_work_dir}/ext-lib:/opt/shenyu-admin/ext-lib -e "SPRING_PROFILES_ACTIVE=mysql" -e "spring.datasource.url=jdbc:mysql://${your_ip_port}/shenyu?useUnicode=true&characterEncoding=utf-8&useSSL=false" -e "spring.datasource.username=${your_username}" -e "spring.datasource.password=${your_password}" -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
another way is to put the application.yml
configuration in ${your_work_dir}/conf, and then execute the following statement:
docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf/ -v /${your_work_dir}/ext-lib:/opt/shenyu-admin/ext-lib -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
#
Start Apache ShenYu Bootstrapdocker network create shenyudocker pull apache/shenyu-bootstrap:2.4.0docker run -d -p 9195:9195 --net shenyu apache/shenyu-bootstrap:2.4.0