Favicon of PrestaShop

PrestaShop

Launch a customizable ecommerce website adapted to your business growth. Retain full control over your data, add modules, and scale from hundreds to millions.

Start and grow your online business with a fully customizable ecommerce platform designed to adapt to your specific needs. Whether you are a new entrepreneur or an accomplished business leader, you retain complete ownership of your store and all its data.

Key benefits include:

  • Complete Control: Maintain full ownership of your store and customer data without technological limitations.
  • Extensive Customization: Choose from thousands of modules and themes to create a unique brand experience.
  • Massive Scalability: Grow your revenue from hundreds to millions with an infrastructure built for long-term success.
  • Dedicated Support: Access resources, bespoke services, and a dedicated support team to guide your journey.
  • Strong Community: Join over 250,000 merchants, experts, and community members sharing best practices.

Build the exact shopping experience you envision and scale your operations efficiently.

Directory Structure

prestashop
data
html
mysql
.env
docker-compose.yml

docker-compose.yml

services:
  mysql:
    image: mysql:5.7
    container_name: prestashop-mysql
    command: --default-authentication-plugin=mysql_native_password
    environment:
      MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
      MYSQL_DATABASE: prestashop
      MYSQL_USER: prestashop
      MYSQL_PASSWORD: ${DB_PASSWORD}
    volumes:
      - ./data/mysql:/var/lib/mysql
    restart: always
    networks:
      - prestashop-net

  prestashop:
    image: prestashop/prestashop:latest
    container_name: prestashop-app
    ports:
      - 8080:80
    depends_on:
      - mysql
    environment:
      DB_SERVER: mysql
      DB_USER: prestashop
      DB_PASSWD: ${DB_PASSWORD}
      DB_NAME: prestashop
      PS_INSTALL_AUTO: 1
      PS_DEV_MODE: 0
      PS_DOMAIN: localhost:8080
      ADMIN_MAIL: demo@prestashop.com
      ADMIN_PASSWD: ${ADMIN_PASSWORD}
    volumes:
      - ./data/html:/var/www/html
    restart: always
    networks:
      - prestashop-net

networks:
  prestashop-net:
    driver: bridge

.env

DB_ROOT_PASSWORD=secure_root_password
DB_PASSWORD=secure_db_password
ADMIN_PASSWORD=secure_admin_password
Categories:

Share:

Ad
Favicon

 

  
 

Similar to PrestaShop

Favicon

 

  
  
Favicon

 

  
  
Favicon