You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
When trying to build it myself via dockerfiles on Windows (even though I used Git Bash), there were issues with expanding $uid $user, because Dockerfile isn't OS agnostic (and requires env to be expanded using %var%), so to avoid further issues, I went for virtualization instead.
When I tried to use WSL (Ubuntu under Subsystem for Linux on Windows 10), I had to first upgrade it to version 2 (for WSL, the Ubuntu installation, and the Docker Desktop's WSL Integration by enabling the distro), and then there as a problem with mysql-server (command apt-get install mysql-server -y).
So I tried to downgrade the base docker image, because I noticed it uses FROM debian:latest, which logically makes absolutely no sense. Version 9 still didn't work, but FROM debian:8 did.
However, on Step 18/20 there was another problem with migration, specifically
Seeded the Param Roles!
Updating...
[ErrorException]
get_headers(): php_network_getaddresses: getaddrinfo failed: Name or service not known
The command '/bin/sh -c /etc/init.d/mysql start && php artisan migrate --seed --database=testing && php artisan key:generate && php artisan migrate && php artisan db:seed && php artisan geoip:update && /etc/init.d/mysql stop' returned a non-zero code: 1
I give up.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Can you help me? I'm a newbie and this steps https://github.com/timegridio/dockerfiles not work on windows
The text was updated successfully, but these errors were encountered: