swisscat/docker-cscart

An utility to create CS-Cart environments using docker

Installs: 48

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 2

Open Issues: 0

Language:Shell

pkg:composer/swisscat/docker-cscart

1.1.3 2017-08-22 08:56 UTC

This package is not auto-updated.

Last update: 2025-09-28 09:19:43 UTC


README

An utility to create CS-Cart environments using docker

Installation

Install the package globally:

composer global require swisscat/docker-cscart

Ensure $PATH contains the ~/.composer/vendor/bin directory

Setup a new environment

The setup relies on an NGINX proxy. Please ensure that https://github.com/swisscat/nginx-proxy is enabled. Head to a cs-cart repository and type

docker-cscart new
docker-compose up -d

Configuration

The following docker configurations are supported in config/app.json :

Native docker integration

{
  "docker": {
    "driver": "native"
  }
}

Docker-machine integration

{
  "docker": {
    "driver": "machine",
    "machine": "default"
  }
}