add docker compose example
All checks were successful
Build docker container / build (push) Successful in 3m44s

This commit is contained in:
David Claeys 2024-05-17 10:54:26 +02:00
parent 38dbf743b7
commit 8a9fca4570

View File

@ -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_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 | | 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
```