From 8a9fca4570ae7ca83ab56474d696ea9f07ce0f76 Mon Sep 17 00:00:00 2001 From: David Claeys Date: Fri, 17 May 2024 10:54:26 +0200 Subject: [PATCH] add docker compose example --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index c638682..9da14f5 100644 --- a/README.md +++ b/README.md @@ -39,3 +39,18 @@ In order to get your API key follow the steps on [this](https://developer.themov | MOVIE_IMAGE_URL | The base url for images on the movie API | https://image.tmdb.org | | MOVIE_API_KEY | The API key for the API | N/A | +### Compose file + +```sh +version: '3.3' +services: + epg: + image: git.claeyscloud.com/david/telebilbao-epg:latest + ports: + - 6060:443 + environment: + # specify the time zone for the server + - TZ=Etc/UTC + - MOVIE_API_KEY=YOUR_KEY + restart: unless-stopped +``` \ No newline at end of file