Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prestashop/docker-internal-images
Docker images with PrestaShop pre-installed and MySQL included
https://github.com/prestashop/docker-internal-images
docker docker-images hacktoberfest prestashop
Last synced: about 1 month ago
JSON representation
Docker images with PrestaShop pre-installed and MySQL included
- Host: GitHub
- URL: https://github.com/prestashop/docker-internal-images
- Owner: PrestaShop
- License: mit
- Created: 2016-07-08T08:20:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T16:57:05.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T10:58:42.037Z (about 1 month ago)
- Topics: docker, docker-images, hacktoberfest, prestashop
- Language: Shell
- Homepage:
- Size: 82 KB
- Stars: 11
- Watchers: 19
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Internal images
This repository provides additional Docker images for a quick deployment of PrestaShop.
:warning: They are not designed for running an e-commerce activity in production.
## Description
These Docker files are based on the images [prestashop/prestashop](https://hub.docker.com/r/prestashop/prestashop/).
With the Apache + PHP server already present, a MySQL server is installed and configured for a small environment (only one user per running website) to avoid too much memory consumption.Each tag of this images has the following content:
* PrestaShop is pre-installed during the build
* All existing languages are being added at the same time.
* One employee per language is created (`[email protected]`)
* URL rewriting is enabledFor each PrestaShop major version, we chose the best compromise between reliability and speed of PHP.
* PrestaShop 1.5 with PHP 5.6
* PrestaShop 1.6 with PHP 7.1
* PrestaShop 1.7 / Nightly with PHP 7.2
* PrestaShop 1.7.7 / Beta with PHP 7.3## Installation
Images are being stored by default on Docker hub. They can be downloaded with:
```bash
docker pull prestashop/docker-internal-images[:tag]
```Possible values for the tag are: `1.5`, `1.6`, `1.7`, `nightly`. Not providing this parameter will fallback on PrestaShop 1.7.
## Running this image
To run this images flawlessly on your environment, we advice you to find an available port on the host, then bind it
to the container and the domain parameter.This example runs a pre-installed PrestaShop 1.7 on the port 8003 of the local machine:
```bash
docker run -ti -p 8003:80 -e PS_DOMAIN=localhost:8003 prestashop/docker-internal-images:1.7
```
## ContributingChanges can be suggested on https://github.com/PrestaShop/docker-internal-images.
During the development, you may try to build new local images by running the following commands:
```bash
docker build -t prestashop/docker-internal-images:1.7 1.7
docker build -t prestashop/docker-internal-images:1.6 1.6
docker build -t prestashop/docker-internal-images:1.5 1.5
docker build -t prestashop/docker-internal-images:nightly nightly
```Then follow the step "Running this image" to create a container from these new tags.
Make sure each subfolder got the same improvement or only one tag will be updated.