Open bluebaroncanada opened 7 years ago
A Dockerfile would also be a nice touch
Also, it would be good to link to Vagrant installation in the README for users who want to try Vagrant but do not have it set up.
I could do that, but there are several issues with Docker that really boil down to: Docker is meant for production environments. The idea is to have as little running on one container as possible; separating the web server from the DB. Even setting up SSH is a PITA, whereas for Vagrant you just type vagrant ssh
. There's also issues with getting it to run on several different systems including, for example, Windows Home editions.
As for the Vangrant installation, I could also do that, but I'd rather just link to Vagrant's own documentation so it's always fresh. Maybe a couple lines of advice. I figure it would be the same as explaining how to install Git. I'll defer to you on both, though. I guess I'd start by trying to find an Docker with xdebug already setup.
No, I totally agree about linking to vagrant's documentation. Currently there is no link. Also, I believe further setup is required, as I was receiving errors. So really, just do a few things to flesh out the vagrant instructions:
localhost:8080
)Is that after the changes I posted about an hour ago?
Can you try checking out my latest changes and then run vagrant destroy --force && vagrant up
?
@bluebaroncanada unfortunately I'm still getting the error:
PDOException in Pdo.php line 205:
SQLSTATE[HY000]: General error: 14 unable to open database file
So weird. Are you on Mac or Linux by chance and you don't have 777
as the permissions for that directory? Can you give me a list of instructions you're running from git clone ...
to vagrant up
? It should be so that all you have to do is those two commands.
@bshaffer did you check the permissions on your data
directory?
Thanks!