Questions tagged [devilbox]

11 questions
3
votes
2 answers

DEVILBOX : Using symlinks for data/www/{symbolic_link}

There is anyway to add custom folder using symbolic link into data folder in Devilbox ? When i put the symbolic link the Auto Virtual Host ignore the folder. Thank You.
Pirex360
  • 328
  • 2
  • 14
2
votes
1 answer

Devilbox (docker) + Laravel Websockets

Trying to get the two to work together. Is there something I'm missing or way to debug why it's not working? Edited .devilbox/nginx.yml as suggested here although trying to contain it to path: wsapp --- ### ### Basic vHost skeleton ### vhost: | …
John Magnolia
  • 16,769
  • 36
  • 159
  • 270
1
vote
1 answer

Change NodeJS version on Devilbox?

I would run strapi.io on devilbox. This needed NodeJS 14.x.x, but Devilbox give me only version 16.x.x How can I use the previous version of nodejs?
Zeroice89
  • 11
  • 1
1
vote
0 answers

PhpStorm does not see php.ini inside the container made via Devilbox. Because of what it is not possible to configure xdebug. How to fix it?

Devilbox creates php.ini files inside docker containers. But it calls them differently: docker-php-ext-xdebug.ini, xxx-devilbox-default-php.ini. PhpStorm does not see these php.ini files. And gives an error. I attach a screenshot. Because of this,…
user153742
  • 313
  • 2
  • 17
1
vote
0 answers

Using encore dev-server with docker devilbox containers

I'm trying to use dev-server in docker containers with devilbox. Devilbox port: 80 and host: 127.0.0.1. I did all configuration to use dev-server in virtual machine that i found:…
1
vote
2 answers

Docker 2.3.0.4 with Devilbox on Windows 10 WSL2 is extremely slow

I have windows 10 2004, 8-core amd cpu, 12gb ram, running an existing wsl2 debian instance just fine. I can run a typical web stack php-fpm nginx mariadb redis-server with existing WSL and the performance is fine. I have been reading that wsl2 and…
frumbert
  • 2,323
  • 5
  • 30
  • 61
0
votes
0 answers

Problems with virtualhost in the devilbox

I am using apache 2.4 and mysql and Ubuntu 20.04 LTS. I was trying to follow this tutorial in xampp: how to create virtual host on XAMPP and working to me, however I need to create virtualhost in the devilbox. I followed the steps: 1° In terminal,…
0
votes
0 answers

How to keep PHPUnit up to date in Docker / Devilbox?

I am using Devilbox LAMPstack as my development environment. It ships with PHPUnit v 7.x, which I can update by doing this: $ wget https://phar.phpunit.de/phpunit.phar $ chmod +x phpunit.phar $ sudo mv phpunit.phar /usr/local/bin/phpunit This gets…
0
votes
2 answers

Why host.docker.internal is NOT resolving my internal IP

I'm trying to connect to host OS MySQL via host.docker.internal, I'm able to connect if i directly mention my internal IP in Laravel application hosted inside docker container. OS / ENVIRONMENT: Host operating system and version: MacOS Monterey…
Wcan
  • 840
  • 1
  • 10
  • 31
0
votes
0 answers

Devilbox - How to connect laravel in docker with MySQL on host OS

I'm trying to connect the laravel app inside docker with MySQL on my host machine. On my host machine MySQL is running is connected with following credentials. Host OS MySQL MySQL version: 8.0.27 Host: 127.0.0.1 Port: 3307 Password: No…
Wcan
  • 840
  • 1
  • 10
  • 31
0
votes
0 answers

Illuminate\Database\QueryException could not find driver using Devilbox and postgresql

I'm still new to dockers and trying to boot up a local laravel server using devilbox. I run the docker using this line docker-compose up -d httpd bind php pgsql --build I've enabled pdo_pgsql and extension=pgsql by adding custom ini file in…