* add docker config with a nginx

* add a make script for easy startup
* extend the readme to subscribe, how you can run with docker
This commit is contained in:
sassar88
2022-12-06 11:00:11 +01:00
parent 952b1f642c
commit 0cb5382ac5
7 changed files with 149 additions and 0 deletions

View File

@@ -10,3 +10,70 @@ This repository is for the purpose of making the application usable on your loca
[![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg?longCache=true&style=popout)](https://www.paypal.me/kyleburtondonate
) ← Help out Card Conjurer's original creator, Kyle. We love you buddy.
## Start with Docker
<details>
<summary>Install Make on Ubuntu</summary>
```bash
$ sudo apt update
```
check is make installed
```bash
$ make -version
```
after run this command, you got the following error?
- **bash: /usr/bin/make: No such file or directory**
then follow with the next step, otherwise skip the next commands
```bash
$ sudo apt install make
```
### Troubleshooting's?
* Follow this guide https://linuxhint.com/install-make-ubuntu/
</details>
<details>
<summary>Install Make on Mac</summary>
check is make installed
```bash
$ make -version
```
after run this command, you got the following error?
- **zsh: command not found: make**
then follow with the next step, otherwise skip the next commands
```bash
$ (sudo) brew install make
```
</details>
<details>
<summary>Install Make on Windows</summary>
Follow this Guide
https://sp21.datastructur.es/materials/guides/make-install.html#windows-installation
</details>
* go to the downloaded/ cloned folder with your terminal/ powershell (windows) and run the following command
```bash
$ make start
```
### Important
Be sure, that you are running Docker Desktop under Windows or Mac before you can run the make command.