The question is in the title, I am trying to dockerise a laravel app, and I start it with
php artisan serve --host=0.0.0.0 --port=8080
But then I try to access:
http://0.0.0.0:8080
but it doesn't work
How should I access it ???
docker-compose.yml:
version: '3'
services:
app:
build: .