Results 5 comments of Kieron Howard

I had this issue with exisiting containers with names such as `d15877a2e0a1_d15877a2e0a1_d15877a2e0a1_d15877a2e0a1_d15877a2e0a1_laradock_docker-in-docker_1` Using `docker rename` on them solved the issue. eg. `docker rename d15877a2e0a1_d15877a2e0a1_d15877a2e0a1_d15877a2e0a1_d15877a2e0a1_laradock_docker-in-docker_1 laradock_docker-in-docker_1 `

Seeing this issue too. Laravel 5.5 `PHP Fatal error: Uncaught ReflectionException: Class sneaker does not exist in /var/www/vendor/laravel/framework/src/Illuminate/Container/Container.php:752 Stack trace: #0 /var/www/vendor/laravel/framework/src/Illuminate/Container/Container.php(752): ReflectionClass->__construct('sneaker') #1 /var/www/vendor/laravel/framework/src/Illuminate/Container/Container.php(631): Illuminate\Container\Container->build('sneaker') #2 /var/www/vendor/laravel/framework/src/Illuminate/Container/Container.php(586): Illuminate\Container\Container->resolve('sneaker', Array)...

I am seeing this issue in v0.7.1 , Summernote: v0.8.8

Interestingly, switching out my code from the minified version to the src for debugging ( https://raw.githubusercontent.com/heyanlong/summernote-ext-highlight/master/src/summernote-ext-highlight.js ) has solved the issue. The code is inserted whereever the cursor is positioned...

Thanks for this. I came across this bug as well. ### MailDev ############################################## maildev: restart: always build: ./maildev ports: - "${MAILDEV_HTTP_PORT}:1080" - "${MAILDEV_SMTP_PORT}:25" networks: - frontend - backend Made the...