zymmr-docker
Note: This setup is not recommended for production use. For production setups, please contact support@ziyanasoftware.com.
Windows
-
Install Docker Desktop: If you haven't already, you need to install Docker Desktop on your Windows machine. Docker Desktop provides an easy-to-use interface for managing Docker containers and images on Windows. You can download it from the official Docker website and follow the installation instructions.
-
Clone this repo or download the compose file: This file will define the configuration for your Docker containers, including the environment variables, services, networks, and volumes.
-
Open Command Prompt or PowerShell: Open Command Prompt or PowerShell on your Windows machine.
-
Navigate to Project Directory: Use the
cd
command to navigate to the directory where yourdocker-compose.yml
file is located. -
Run Docker Compose Command: Once you're in the correct directory, you can run the following command to start the containers defined in your
docker-compose.yml
file:set SITE_NAME=abc.zymmr.com && docker-compose up -d
This command sets the
SITE_NAME
environment variable toabc.zymmr.com
and then starts the Docker containers defined in thedocker-compose.yml
file in detached mode (-d
flag). -
Once the containers are up and running, you can verify that everything is working as expected. You can access Zymmmr by opening a web browser and navigating to
http://<server-ip>
Linux
-
Install Docker Engine: If you haven't already, you need to install Docker Engine on your Linux machine. Docker Engine provides a platform to develop, ship, and run containers. You can install it by following the official Docker documentation for your specific Linux distribution.
-
Clone this repo or download the compose file: This file will define the configuration for your Docker containers, including the environment variables, services, networks, and volumes.
-
Open Terminal: Open a terminal on your Linux machine.
-
Navigate to Project Directory: Use the
cd
command to navigate to the directory where yourdocker-compose.yml
file is located. -
Run Docker Compose Command: Once you're in the correct directory, you can run the following command to start the containers defined in your
docker-compose.yml
file:SITE_NAME=abc.zymmr.com && docker-compose up -d
This command sets the
SITE_NAME
environment variable toabc.zymmr.com
and then starts the Docker containers defined in thedocker-compose.yml
file in detached mode (-d
flag). -
Once the containers are up and running, you can verify that everything is working as expected. You can access your Zymmr by opening a web browser and navigating to
http://<server-ip>