Docker 部署vue+springboot+mysql web项目
docker配置简单的vue+springboot+mysql的web服务
1. 基础配置
使用华为云弹性云服务器Ubuntu 20.04 server 64bit,宝塔和Docker安装略。
2. VUE配置
创建你心仪的目录,我选择创建了 /usr/local/nginx
将你 npm run build 生成的dist目录拷贝到这个目录
并创建Dockerfile和nginx.conf文件
文件内容如下
Dockerfile:
#指定对应版本镜像,我这里是nginx1.17.8
FROM nginx:1.17.8
# 该镜像维护者信息
MAINTAINER su
# 将本地文件添加到容器中
# 将dist文件中的内容复制到 /usr/local/nginx/html/ 这个目录下面,该路径是nginx容器生成的一个虚拟路径,你的项目会存在这里。
COPY dist/ /usr/local/nginx/html/
COPY nginx.conf /etc/nginx/nginx.conf
# 构建镜像时执行的命令
RUN echo 'echo init ok!!'
nginx.conf:
worker_processes auto;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
client_max_body_size 20m;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/local/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
下拉镜像
docker pull nginx:1.17.8
来到我们创建的目录,便于我们在当前文件夹创建镜像
cd /usr/local/nginx
创建镜像,-t表示创建的镜像名,.表示当前目录(别忘了这个点)
docker build -t myweb .
最后successfully built 后面的hash就是我们的容器ID,还可以通过如下命令再查看:
docker ps|grep nginx
启动容器,冒号前面为宿主机端口,后面为nginx容器端口
docker run -p 80:80 --name myweb 镜像id
访问页面80端口看看你的vue静态页面如何。
如果无法访问,也有可能是nginx版本的问题,可以尝试不同版本nginx的镜像,下拉以后记得更改Dockerfile里的nginx版本即可。
3. springboot部署
由于我的项目是java17,我用openjdk17镜像来部署springboot项目
还和刚才一样,创建你心仪的目录,我这里选择的是 /usr/local/springboot
在此目录下创建Dockerfile,jar包也放在这里
Dockerfile :记得把里面的jar包换成你jar包的名字
FROM openjdk:17
ADD tjData-0.0.1-SNAPSHOT.jar /app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
EXPOSE 8033
(我这里犯了路径的错误,由于我们将jar包放在镜像的根目录,所以app.jar前面不能少/)
下拉镜像
docker pull openjdk:17
同上,来到我们创建的目录,便于我们在当前文件夹创建镜像
cd /usr/local/springboot
创建镜像(不要忘了点)
docker build -t tjdataserver .
启动容器
docker run --net=host -d tjdataserver
这里就springboot就部署完成了
ps:上面顺利的情况,docker ps一下,如果没有找到你的镜像,那么说明启动项目时报错了。
可以通过先docker rm 容器id,然后去掉命令中的-d看看报错
docker run --net=host -d tjdataserver
可以尝试通过重新建立java镜像,并启动容器,更换java版本问大佬等方法尝试。
4.mysql
由于是小云服务器,pull mysql镜像的时候老因为内存问题报错,根据项目的mysql版本,选用宝塔本地安装mysql8.0。
导入数据库的时候我遇到字符集错误的问题,出现如下报错:
ERROR 1273 (HY000) at line 989: Unknown collation: 'utf8mb4'
解决:将导出的*.sql文件中,CREATE TABLE中的COLLATE=后面的替换为utf8mb4_bin
修改后:
至此配置完成,顺利完成web环境搭建。
更多推荐
所有评论(0)