Sign inSign up

haneu89/apm

By haneu89

Updated over 4 years ago

docker apm container

Image
0

740

haneu89/apm repository overview

LEMP

사용법

Dockerfile

FROM haneu89/apm:laravel

WORKDIR /app

COPY . ./

RUN composer install --optimize-autoloader

RUN chown -R www-data:www-data /var/www
RUN php artisan config:cache

.dockerignore

/vendor

script.sh

docker build -t laravel-app .
docker stop laravel-app
docker run -r \
	--restart=always \
	-p 8000:80\
	laravel-app

Tag summary

Content type

Image

Digest

Size

192.6 MB

Last updated

over 6 years ago

docker pull haneu89/apm