mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-12 04:23:04 +02:00
add prestashop
This commit is contained in:
parent
c7d861c129
commit
9ee6abb707
@ -151,18 +151,19 @@ A collection of delicious docker recipes.
|
||||
- [x] jamapi
|
||||
- [x] joomla
|
||||
- [x] json-server
|
||||
- [x] magento
|
||||
- [x] magento :shopping_bags:
|
||||
- [x] mantisbt
|
||||
- [x] mediagoblin
|
||||
- [x] netdata
|
||||
- [x] nginad
|
||||
- [x] nodebb :+1:
|
||||
- [x] opencart
|
||||
- [x] opencart :shopping_bags:
|
||||
- [x] openrefine
|
||||
- [x] phpbb
|
||||
- [x] phpmyadmin-arm
|
||||
- [x] phpvirtualbox-arm
|
||||
- [x] piwik
|
||||
- [x] prestashop :shopping_bags:
|
||||
- [x] revive
|
||||
- [x] zoneminder :+1:
|
||||
|
||||
|
31
prestashop/Dockerfile
Normal file
31
prestashop/Dockerfile
Normal file
@ -0,0 +1,31 @@
|
||||
#
|
||||
# Dockerfile for prestashop
|
||||
#
|
||||
|
||||
FROM php:5.6-apache
|
||||
MAINTAINER kev <noreply@easypi.pro>
|
||||
|
||||
RUN a2enmod rewrite
|
||||
|
||||
RUN set -xe \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y libicu-dev libpng-dev libjpeg-dev libmcrypt-dev unzip \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& docker-php-ext-configure intl \
|
||||
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
|
||||
&& docker-php-ext-install intl gd mbstring mcrypt opcache pdo pdo_mysql zip
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
ENV PS_VER 1.7.2.4
|
||||
ENV PS_MD5 19c374fd4e65e2a0d978c619781686bc
|
||||
ENV PS_URL https://download.prestashop.com/download/releases/prestashop_${PS_VER}.zip
|
||||
ENV PS_FILE prestashop_${PS_VER}.zip
|
||||
|
||||
RUN set -xe \
|
||||
&& echo "short_open_tag=off" >> /usr/local/etc/php/php.ini \
|
||||
&& curl -sSL ${PS_URL} -o ${PS_FILE} \
|
||||
&& echo "${PS_MD5} ${PS_FILE}" | md5sum -c \
|
||||
&& unzip ${PS_FILE} \
|
||||
&& rm ${PS_FILE} \
|
||||
&& chown -R www-data:www-data /var/www
|
30
prestashop/README.md
Normal file
30
prestashop/README.md
Normal file
@ -0,0 +1,30 @@
|
||||
prestashop
|
||||
==========
|
||||
|
||||
[PrestaShop][1] has comprehensive product features for small, medium or large
|
||||
ecommerce stores and sell online. Hundreds of features are standard and 100%
|
||||
free.
|
||||
|
||||
## docker-compose.yml
|
||||
|
||||
```yaml
|
||||
prestashop:
|
||||
image: vimagick/prestashop
|
||||
ports:
|
||||
- "8000:80"
|
||||
links:
|
||||
- mysql
|
||||
volumes:
|
||||
- /var/www
|
||||
restart: always
|
||||
|
||||
mysql:
|
||||
image: mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root
|
||||
- MYSQL_DATABASE=prestashop
|
||||
restart: always
|
||||
|
||||
```
|
||||
|
||||
[1]: https://www.prestashop.com/
|
16
prestashop/docker-compose.yml
Normal file
16
prestashop/docker-compose.yml
Normal file
@ -0,0 +1,16 @@
|
||||
prestashop:
|
||||
image: vimagick/prestashop
|
||||
ports:
|
||||
- "8000:80"
|
||||
links:
|
||||
- mysql
|
||||
volumes:
|
||||
- /var/www
|
||||
restart: always
|
||||
|
||||
mysql:
|
||||
image: mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root
|
||||
- MYSQL_DATABASE=prestashop
|
||||
restart: always
|
Loading…
Reference in New Issue
Block a user