Skip to content

CertifiedWebMaster/CS-CART-DEVDOCKER

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS-Cart Development Environment

Docker-based development environment:

  • PHP versions: 8.2, 8.1, 8.0 and 7.4.
  • MySQL 5.7 database server.
  • nginx web server.
  1. Install git, docker and docker-compose.

  2. Clone the environment repository:

    $ git clone [email protected]:cscart/development-docker.git ~/srv
    $ cd ~/srv
  3. Create the directory to store CS-Cart files:

    $ mkdir -p app/www
  4. Clone CS-Cart repository or unpack the distribution archive into the app/www directory.

  5. Enable the default application config for nginx:

    $ cp config/nginx/app.conf.example config/nginx/app.conf
  6. Run application containers:

    $ make -f Makefile run
  • DB host: mysql5.7.
  • User: root.
  • Password: root.

PHP 7.4 is used by default.

To use the specific PHP version for your requests, add the following prefix to the domain you request:

  • php7.4. for PHP 7.4.
  • php8.0. for PHP 8.0.
  • php8.1. for PHP 8.1.
  • php8.2. for PHP 8.2.

PHP containers do not send actual e-mails when using the mail() function.

All sent emails will be caught and stored in the app/log/sendmail directory.

See comments in the config/nginx/app.conf.example file if you need to host multiple PHP applications inside single Docker PHP container.

xDebug 3 is already configured for PHP7 and PHP8 containers. All you have to do is to uncomment the extension installation in the config/php*/Dockerfile files.

You can read about configuring PHPStorm to work with Docker and xDebug 3 in the "Debugging PHP" article.

Docker-compose creates a subnet with addresses by default 172.18.[0-255].[0-255].

If you run docker locally with a default subnet, then resources using the same addresses will be unavailable - the response will be returned by the local subnet, not the required resource.

To fix the problem, you need to change the address of the docker subnet.

In the docker-compose file.bml shows an example of replacing addresses with 10.10.[0-255].[0-255].

Uncomment the lines in docker-compose.yml and run the following commands:

$ docker network rm $(docker network ls -q)
$ docker-compose down && docker-compose up -d

About

CS-Cart development environment based on Docker containers. OneShop

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 90.0%
  • PHP 5.6%
  • Makefile 4.4%