vue Docker 化


title: Dockerize Vue.js App
type: cookbook
order: 13


Dockerize Vue.js App

Simple Example

So you build your first Vue.js app using the amazing Vue.js webpack template and now you really want to show off with your colleagues by demonstrating that you can also run it in a Docker container.

Let's start by creating a Dockerfile in the root folder of our project:

FROM node:9.11.1-alpine

# install simple http server for serving static content

# make the 'app' folder the current working directory
WORKDIR /app

# copy both 'package.json' and 'package-lock.json' (if available)
COPY package*.json ./

# install project dependencies
RUN npm install

# copy project files and folders to the current working directory (i.e 'app' folder )
COPY . .

# build app for production with minification
RUN npm run build

EXPOSE 8080
CMD ["http-server","dist"]

It may seem redundant to first copy package.json and package-lock.json and then all project files and folders in two separate steps but there is actually a very good reason that (spoiler:it allows us to take advantage of cached Docker layers).

Now let's build the Docker image of our Vue.js app:

docker build -t vuejs-cook/dockerize-vuejs-app .

Finally, let's run our Vue.js app in a Docker container:

docker run -it -p 8080:8080 --rm --name dockerize-vuejs-app-1 vuejs-cookbook/dockerize-vuejs-app

We should be able to access our Vue.js app on localhost:8080.

Real-World Example

In the previous example,we used a simple,zero-configuration command-line http server to serve our Vue.js app which is perfectly ok for quick prototyping and may even be ok for simple production scenarios.After all,the documentation says:

It is powerful enough for production usage,but it's simple and hackable enough to be used for testing,local development,and learning

Nevertheless,for realistically complex production use cases,it may be wiser to stand on the shoulders of some giant like NGINX or Apache and that is exactly what we are going to do next:we are about to leverage NGINX to serve our Vue.js app because it is considered to be one of the most performance and battle-tested solutions our there.

Let's refactor our Dockerfile to use NGINX:

# build stage
FROM node:9.11.1-alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install 
COPY . . 
RUN npm run build

# production stage
FORM nginx:1.13.12-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD["nginx","-g","daemon off"]

Ok,let's see what's going on here:

  • we have split our original Dockerfile in multiple stages by leveraging the Docker multi-stage-builds feature;
  • the first stage is responsible for building a production-ready artifact of our Vue.js app;
  • the second stage is responsible for serving such artifact using NGINX.

Now let's build the DOcker image of our Vue.js app:

docker build -t vuejs-cookbook/dockerize-vuejs-app .

Finally,let's run our Vue.js app in a Docker container:

docker run -it -p 8080:80 --rm --name dockerize-vuejs-app-1 vuejs-cookbook/dockerize-vuejs-a''

We should be able to access our Vue.js app on localhost:8080

Additional Context

If you are reading this cookbook,chances are you already know why you decided to dockerize your Vue.js app.But if you simply landed on this page after hitting the Google's I'm feeling lucky button,let me share with you a couple of good reasons for doing that.
Today's modern trend is to build applications using the Cloud-Native approach which revolves mainly around the following buzzwords:

  • Microservices
  • DevOps
  • Continuous Delivery
    Let's see how these concepts actually affect our decision of dockerizing our Vue.js app.

Effects of Microservices

By adopting the microservices architectural style,we end up building a single application as a suite of small services,each running in its own process and communicating with lightweight mechanisms.These services are build around business capabilities and independently deployable by fully automated deployment machinery.

SO,committing to this architectural approach most of the time implies developing and delivering our front-end as an independent service.

Effect of DevOps

The adoption of DevOps culture,tools and agile engineering practices has,among other things,the nice effect of increasing the collaboration between the roles of development and operations.
One of the main problem of the past (but also today in some realities) is that the dev team tended to be uninterested in operation and maintenance of a system once it was handed over to the ops team,while the latter tended to be not really aware of the system's business goals and,therefore,reluctant in satisfying the operational needs of the system (also referred to as "whims of developers").
So,delivering our Vue.js app as a Docker image helps reducing, if not removing entirely,the difference between running the service on a developer's laptop,the production environment or any environment we may think of.

Effects of Continuous delivery

By leveraging the Continuous Deliver discipline we build our software in a way that it can potentially be released to production at any time.Such engineering practice is enabled by means of what is normally called continuous delivery pipeline.The purpose of a continuous delivery pipeline is to split our build into stages(e.g.compilation,unit tests,integration tests,performance test,etc.)and let each stage verify our build artifact whenever our software changes.Ultimately,Ultimately,each stage increases our confidence in the production readiness of our build artifact and,therefor,reduces the risk of breaking things in production(or any other environment for that matters).

So,creating a Docker image for our Vue.js app is a good choice here because that would represent our final build artifact,the same artifact that would be verified against our continuous delivery pipeline and that could potentially be released to production with confidence.

Alternative Patterns

If your company is not into Docker and Kubernetes just yet or you simply want to get your MVP out the door,maybe dockerizing your Vue.js app is not what you need.

Common alternatives are:

  • leveraging all-in-one platform like Netlify;
  • hosting your SPA on Amazon S3 and serving it with Amazon CloudFront(see this link for a detailed guild).
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,322评论 0 10
  • 敬业 我个人认为敬业是个永恒的话题。也许你混的风生水起,可以少上班一样考核不误。也许你经常使用一些小伎俩。一...
    咫尺为邻阅读 2,460评论 0 0
  • 如果爱有珍贵, 朴素的情义温馨明快。 爱有几分浓烈, 点缀时光里的华彩活泼, 于你的牵挂, 恋, 是唯-的沉静守望...
    心羽自心阅读 323评论 1 2
  • 你跟我说:长大这两个字 最孤独了,孤独到连偏旁都没有。是啊,长大着实是一个令人惆怅继而又充满悲意的字眼。也许对于我...
    千帆过尽AND阅读 521评论 2 14