Benjamin Loison

Results 440 comments of Benjamin Loison

Hello, just to make sure (I'm not a regular Docker user): You are aware of: - [blob/6750e3dfc0e3871196f561db935a3576bf6640de/README.md#run-the-api-with-docker](https://github.com/Benjamin-Loison/YouTube-operational-API/blob/6750e3dfc0e3871196f561db935a3576bf6640de/README.md#run-the-api-with-docker) - [blob/6750e3dfc0e3871196f561db935a3576bf6640de/Dockerfile](https://github.com/Benjamin-Loison/YouTube-operational-API/blob/6750e3dfc0e3871196f561db935a3576bf6640de/Dockerfile) ? I already pushed once https://hub.docker.com/r/benjaminloison/youtube-operational-api, but it needs to be...

Would you mind opening a pull request with such GitHub Actions CI/CD?

Just a disclaimer I don't know how Docker internally work and I do not like Docker much (I may be wrong), but I am totally fine helping you using Docker...

Related to #220.

> This project is great! I'd love to have an image I could download from Docker Hub. That way, I could manage Docker images without constantly checking versions. Sorry to...

When running `firefox` it runs last `apt install`ed version of Firefox, same for `docker run youtube_operational_api` (built with the following command), so if you want to potentially install/update and run...

> [YouTube operational API](https://github.com/Benjamin-Loison/YouTube-operational-API) [...] is coded in PHP to ease retrieving public YouTube data, possibly not retrievable with YouTube Data API v3. > > [Webscrap any website](https://codeberg.org/Benjamin_Loison/Webscrap_any_website) has the...

```bash curl 'http://localhost:8080/test.php' ``` Output: ```html Parse error: syntax error, unexpected end of file, expecting "," or ";" in /var/www/html/test.php on line 4 ``` ``` api_1 | 172.18.0.1 - -...

```php include_once 'common.php'; ``` does not change anything. Maybe it is because a parsing error and not a runtime error.

Adding after `include_once 'common.php';`: ```php include_once 'not_existing.php'; ``` ```bash curl 'http://localhost:8080/test.php' ``` ``` test ``` If remove `include_once 'common.php';`, then have: ```bash curl 'http://localhost:8080/test.php' ``` Output: ```html Warning: include_once(not_existing.php): Failed...