diff --git a/README.md b/README.md index 9abbdbf..09775ee 100644 --- a/README.md +++ b/README.md @@ -71,16 +71,21 @@ This is an example of how to list things you need to use the software and how to ### Installation -1. Get a free API Key at [https://example.com](https://example.com) -2. Clone the repo - ```sh - git clone https://github.com/github_username/repo_name.git +1. Build compose.yaml + ```yaml + version: "3.8" + services: + docker-epg: + image: git.donnymims.com/dnny44/docker-epg:latest + container_name: docker-epg + restart: unless-stopped + ports: + - 8080:80 + networks: {} ``` -3. Install NPM packages - ```sh - npm install - ``` -4. Enter your API in `config.js` +2. Install NPM packages + +3. Enter your API in `config.js` ```js const API_KEY = 'ENTER YOUR API'; ```