You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the fastest and easiest way to get started with a fresh Stochastix project. The installer handles the creation of a new Symfony application, installation of the Stochastix bundle, and Docker configuration in a single command.
9
+
This is the fastest and easiest way to get started with a fresh Stochastix project. You do not need any prior knowledge of Docker to use this method; you just need to have Docker Desktop installed on your system.
10
+
11
+
::: info Prerequisites
12
+
13
+
1.**Install Docker Desktop**: Download and install the version for your operating system from the official website.
2.**(Windows Users Only) Install WSL 2**: Docker Desktop on Windows requires the Windows Subsystem for Linux (WSL) 2 backend. If you don't have it installed, follow the official Microsoft guide.
18
+
19
+
*[**Microsoft's Guide to Installing WSL**](https://learn.microsoft.com/en-us/windows/wsl/install)
11
20
:::
12
21
13
-
Open your terminal and run the following command. Replace `your-project-name` with the desired directory name for your new project.
22
+
### Run the Installer
23
+
24
+
Once Docker Desktop is installed and running, open your terminal and run the following command. Replace `your-project-name` with the desired directory name for your new project.
14
25
15
26
```bash
16
27
docker run --rm -it --pull=always -e HOST_PWD="$PWD" \
1. Create a new directory named `your-project-name`.
24
35
2. Set up a new Symfony project inside it.
25
36
3. Install the `stochastix/core` bundle and its dependencies.
26
-
4. Create `compose.yaml` file for a ready-to-use development environment.
37
+
4. Create a `compose.yaml` file for a ready-to-use development environment.
38
+
39
+
### First Launch
27
40
28
41
Once the process is complete, your Stochastix environment is now running and ready for use.
29
42
30
-
You can access https://localhost in your web browser to access the user interface.
43
+
You can access **https://localhost** in your web browser to access the user interface.
31
44
32
-
Next step: visit the [Docker tooling](/docker-tooling.md) page to understand how to manage your Docker environment, including starting and stopping the containers, and launching commands inside the container.
45
+
::: tip Next Step
46
+
Visit the [Docker tooling](/docker-tooling) page to understand how to manage your Docker environment and run commands.
0 commit comments