Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How Docker deploys Laravel applications

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how Docker deploys Laravel applications". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's ideas to study and learn how Docker deploys Laravel applications.

First, prepare our laravel application

# run the mix command to package js, css and img files. If you do not use mix, you can omit the dependent composer install-- ignore-platform-reqs-- optimize-autoloader-- no-dev in npm installnpm run production# installation composer.lock.

Second, prepare apache configuration file docker/000-default.conf

# the servername directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection urls. In the context of virtual hosts, the servername # specifies what hostname must appear in the request's host: header to # match this virtual host. For the default virtual host (this file) this # value is not decisive as it is used as a last resort host regardless. # however, you must set it for any further virtual host explicitly. # servername www.example.com serveradmin liuzhaowei55@gmail.com documentroot / var/www/html/public # available loglevels: trace8,..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # it is also possible to configure the loglevel for particular # modules, e.g. # loglevel info ssl:warn errorlog ${apache_log_dir} / error.log customlog ${apache_log_dir} / access.log combined # for most configuration files from conf-available/, which are # enabled or disabled at a global level, it is possible to # include a line for only one particular virtual host. For example the # following line enables the cgi configuration for this host only # after it has been globally disabled with "a2disconf" # include conf-available/serve-cgi-bin.conf

Third, prepare dockerfile files

From php:7.3-apachelabel maintainer= "liuzhaowei55@gmail.com" # set time zone arg tz=asia/shanghaienv tz ${tz} run ln-snf / usr/share/zoneinfo/$tz / etc/localtime & & echo $tz > / etc/timezone# installation software cronrun set-eux\ & & apt-get update\ & & apt-get install- y-- no-install-recommends cron\ & & apt-get autoremove\ & apt-get autoclean\ & & apt-get clean\ & & Rm-rf / var/lib/apt/lists/* / tmp/* / var/tmp/* # installation extension env php_extension\ pdo_mysql\ bcmathenv pecl_extension\ redisrun docker-php-ext-install $php_extension\ & & pecl install $pecl_extension\ & & docker-php-ext-enable $pecl_extension\ opcache\ & & a2enmod rewrite # access port expose 80arg app_env=developmentenv app_env ${app_env} copy-- chown=www-data:www-data. / var/www/htmlcopy docker/000-default.conf / etc/apache2/sites-available/000-default.confworkdir / var/www/html

Fourth, prepare the dockerignore file: .dockerkeeper (optional)

/ node_modules/.dockerignore/dockerfile

5. Prepare the image entry file: docker-entrypoint.sh (optional)

Note that this file requires execution permissions, but this entry file is not required, just to execute some caching commands before the application runs.

#! / usr/bin/env bashphp artisan cache:clearphp artisan config:cachephp artisan route:cachephp artisan view:cacheapache2-foreground

6. Run the image

Docker run-p 80:80. Thank you for reading, the above is the content of "how Docker deploys Laravel applications". After the study of this article, I believe you have a deeper understanding of how Docker deploys Laravel applications, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report