From f3bf94d1905ba9a74b0ef3a0ef89c6ecdc1fe5b0 Mon Sep 17 00:00:00 2001 From: Dnny44 Date: Thu, 8 Aug 2024 13:08:03 -0500 Subject: [PATCH] updated README --- README.md | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) 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'; ```