Sylius/docs/the-book/installation/sylius-ce-installation/sylius-ce-installation-with-docker.md
2024-11-04 14:24:40 +00:00

1.7 KiB

layout
title description tableOfContents outline pagination
visible
true
visible
false
visible
true
visible
true
visible
true

Sylius CE Installation with Docker

Docker

Docker is an open-source platform for developing, delivering, and running applications. It allows you to separate your application from your infrastructure, simplifying software delivery. With Docker, you can manage infrastructure the same way you manage applications. This platform methodology enables fast code delivery, testing, and implementation, significantly reducing the delay between writing code and running it in the production environment.

{% hint style="info" %} Make sure you have Docker and make installed on your local machine. {% endhint %}

Project Setup

Clone Sylius-Standard repository or if you are using GitHub you can use the Use this template button that will create new repository with Sylius-Standard content.

git clone git@github.com:Sylius/Sylius-Standard.git your_project_name

Development

Sylius Standard comes with the docker compose configuration. You can start the development environment via the make init command in your favourite terminal. Please note that the speed of building images and initialising containers depends on your local machine and internet connection - it may take some time. Then enter localhost in your browser or execute open http://localhost/ in your terminal.

{% code lineNumbers="true" %}

make init
open http://localhost/

{% endcode %}