A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution.
10K+
This image is not intended for productive use! The main purpose is for demo, testing, and development tasks. Therefore a pre-configured shop with pre-defined options yielding fast startup times is used.
Create a docker-compose.yml with the following contents.
web:
image: chrisss404/opencart:latest-php5.5
links:
- db
ports:
- "80:80"
db:
image: chrisss404/opencart:latest-mysql5.5
Then run docker-compose up and navigate in your browser to
To set the hostname for OpenCart use the environment variable VIRTUAL_HOST=foo.bar.com.
web:
image: chrisss404/opencart:latest-php5.5
links:
- db
ports:
- "80:80"
environment:
- VIRTUAL_HOST=foo.bar.com
db:
image: chrisss404/opencart:latest-mysql5.5
Then run docker-compose up --force-recreate and foo.bar.com is used as base URL.
To use this image in combination with the very popular nginx reverse proxy, use the following docker-compose.yml.
proxy:
image: jwilder/nginx-proxy
ports:
- "80:80"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
web:
image: chrisss404/opencart:latest-php5.5
links:
- db
environment:
- VIRTUAL_HOST=foo.bar.com
db:
image: chrisss404/opencart:latest-mysql5.5
Then start both, the reverse proxy and OpenCart, with docker-compose up --force-recreate. If the nginx reverse proxy is run with SSL support, add the environment variable SHOP_USE_SSL=1.
To change the backend credentials, set the environment variables SHOP_ADMIN_USER=joe1 and SHOP_ADMIN_PASSWORD=abc123.
web:
image: chrisss404/opencart:latest-php5.5
links:
- db
ports:
- "80:80"
environment:
- SHOP_ADMIN_USER=joe1
- SHOP_ADMIN_PASSWORD=abc123
db:
image: chrisss404/opencart:latest-mysql5.5
To download a plugin on startup, add the environment variable DOWNLOAD_PLUGIN=https://github.com/foo/bar/archive/master.tar.gz.
To use this image for development, use subsequent docker-compose.yml.
web:
image: chrisss404/opencart:latest-php5.5
links:
- db
ports:
- "80:80"
volumes:
- ./html:/var/www/html
db:
image: chrisss404/opencart:latest-mysql5.5
ports:
- "3306:3306"
Then run the following commands in order to get the files for the volume:
# get container id
docker-compose ps -q web
# copy directory to host and set file permissions
docker cp <continer-id>:/var/www/html ./html
chmod -R 0777 html
Content type
Image
Digest
Size
122.2 MB
Last updated
over 8 years ago
docker pull chrisss404/opencart:2.0.0.0-mysql5.7