Linked Questions
10 questions linked to/from Difference between "docker compose" and "docker-compose"
0
votes
0
answers
108
views
Error response from daemon: dockerfile parse error: Unknown flag: link [duplicate]
I have just clone the API Platform project and when I try to build the Dockerfile I got the error:
Error response from daemon: dockerfile parse error line 74: Unknown flag: link
which correspond to ...
679
votes
13
answers
361k
views
What's the difference between Docker Compose vs. Dockerfile
I have been reading up and learning about Docker, and am trying to correctly choose the Django setup to use. So far there is either:
Docker Compose or Dockerfile
I understand that Dockerfiles are used ...
3
votes
4
answers
24k
views
Permission denied when execute docker-compose command in Ubuntu Linux
I installed docker engine and docker compose in Ubuntu Linux 20.04LTS.
ubuntu@ip-10-0-2-13:~/myapp/src$ docker-compose -v
docker-compose version 1.27.4, build 40524192
I also ran beloe command to ...
3
votes
2
answers
4k
views
What is the difference between `docker compose` and `docker-compose`
It seems that docker compose * mirrors many docker-compose * commands.
What is the difference between these two?
2
votes
1
answer
4k
views
Docker failed to fetch oauth token i/o timeout
Trying to install retool locally on laptop. Thenen I ran into this issue while trying to use docker:
=> ERROR [retool-onpremise-db-connector internal] load metadata for docker.io/tryretool/backend:...
1
vote
3
answers
4k
views
Docker Compose does not work: ModuleNotFoundError: No module named 'compose'
So I try to run docker-compose on Fedora 36 but any time I try it, it says this:
Traceback (most recent call last):
File "/usr/bin/docker-compose", line 33, in <module>
sys.exit(...
3
votes
1
answer
773
views
Github actions docker-compose with buildx error (list index out of range)
I'm trying to use buildx to build a compose file in a github actions file and I'm having the next error:
[104392] Failed to execute script docker-compose
Traceback (most recent call last):
File &...
-1
votes
1
answer
583
views
Symfony 5 Cannot Find Docker Compose
I'm trying to follow the Symfony 5: The Fast Track tutorial, and I'm stuck before I even leave the gate. I've made several attempts to uninstall and reinstall Docker, Docker Compose and Symfony CLI, ...
0
votes
1
answer
211
views
docker-compose error if code on NAS (not local disk): can't open file X [Errno 2] No such file or directory
On Windows I get error on docker-compose up, eg:
python: can't open file '/code/manage.py': [Errno 2] No such file or directory
This actually happens on many projects trying to deploy them into ...
0
votes
1
answer
57
views
Can't find "docker-compose" tool
I got an Azure custom task which used this line to get the docker compose path and use it to run docker compose:
this.dockerComposePath = tl.which("docker-compose");
It worked until ...