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:
Build the exact shopping experience you envision and scale your operations efficiently.
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: bridgeDB_ROOT_PASSWORD=secure_root_password
DB_PASSWORD=secure_db_password
ADMIN_PASSWORD=secure_admin_passwordAuto-fetched about 17 hours ago
Auto-fetched about 17 hours ago