php:apache

From wikieduonline
Revision as of 13:58, 15 February 2024 by Welcome (talk | contribs)
Jump to navigation Jump to search

docker pull php:apache
docker build . -t php-apache
 docker run --publish 80:80 --name zumo-app  -d zumo-app

Dockerfile Working example

FROM php:apache

# Copy your PHP files to the document root
COPY index.php /var/www/html

# Expose the web server port
EXPOSE 80

Bard example

FROM php:apache

# Copy your PHP files to the document root
COPY . /var/www/html 

# Expose the web server port
EXPOSE 80 

# Start the Apache web server
CMD ["apache2", "-D", "FOREGROUND"]

See also

Advertising: