-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose vs docker compose #184
Comments
Hi, I have the same issue here, and in my case there is not even a difference between the usage of |
Last time I ran a project using this was a few months ago, and I think I just used |
FYI: I don't have owner privileges to this repo, but this project is going to probably need a new regular maintainer because I don't use wordpress (or this project) in my day to day job anymore. |
I'm open to grant owner privileges to whoever is willing to take over. It might need to move out of the visiblevc organization too though. |
It still works on my macos machine. Only having this issue on my Windows 10 x64 machine. Is there someone else who can test/recreate this problem on a Windows machine? |
The
wordpress-starter
documentation states to usedocker-compose
command to start i.e.docker-compose up -d && docker-compose logs -f wordpress
When this command is run though Docker gives this notice:
If I switch to using
docker compose
based on this i.e.docker compose up -d && docker compose logs -f wordpress
Then I get a different style of output when it's running, and
wordpress-starter
throws an error and exits:In my
docker-compose.yml
my wordpress service is already configured as-per the first example (with SYS_ADMIN etc.).Does
wordpress-starter
not support the newdocker compose
overdocker-compose
?The text was updated successfully, but these errors were encountered: