I have 5 images and try to run docker images through docker-compose up, but it is showing nothing on the console.
while running the docker-compose --version it is showing nothing.
docker-compose does not come bundled with the docker-engine. You need to install it separately after installing the engine. Follow the instructions given in this link:
https://docs.docker.com/compose/install/
Related
Is there a way that is jaseci specific to run redis in the terminal, because jaseci studio is complaining in the logs and the graphs is not working as expected because it requires redis.
I'm expecting redis to work on jsserv so that the graph can work properly.
You'd need to run the standard redis-server in a separate terminal before starting jsserv runserver.
Assuming you're using an Ubuntu (or Debian) distro, to install redis-server use sudo apt install redis-server
Is there a way in VSCode with docker extension to change docker-compose up arguments? By default it is started as docker-compose -f "docker-compose.yml" up -d --build. But I don't want to rebuild project each time. I want to run separate docker-compose build command if I need it.
I've looked over devcontainer.json parameters and working with containers article, but did not find anything useful.
Found the solution.
This can be done edditing Docker extension settings.
There is a check "Docker: Docker Compose build", which can be removed in order to disable build.
Also, settings.json can be changed with "docker.dockerComposeBuild": false parameter
I am traying to run docker-compose, but an error occur:
eric#pop-os:~/Documentos/web$ docker-compose up Postgres
bash: /home/eric/.local/bin/docker-compose: Arquivo ou diretório inexistente
When I run which docker-compose:
eric#pop-os:~/Documentos//web$ which docker-compose
/home/eric/.pyenv/shims/docker-compose
It is possible to change the path to docker-compose on Linux Pop Os to solve this problem?
I search on the web but not find any solution.
To solution this case I find 2 answers:
create an alias on ~/.bashrc --> but this solution gave me other problems.
When I installed docker-compose I installed it with pip. So
I uninstalled it and install docker-compose again but in the
operational system!
I'm running vscode in an Ubuntu LXC container with Ubuntu host. Firefox is the default browser in the container. However links in vscode (for example, Help...Documentation) don't work. Nothing happens.
Perhaps there is a package I need to install?
Figured it out. Ran code --verbose and saw it was attempting an xdg-open. Installed xdg-utils. Viola!
How to uninstall eclipse che completely on mac osx?
Used mac osx installer to install binary. Seems che is always running on 8080 even killed the process and stopped docker.
https://eclipse.org/che/
I couldn't find the better way for uninstall on Mac but you can stop the Tomcat embedded in Eclipse Che.
The path is /Applications/EclipseChe3.12.5.2.app/Contents/Resources/eclipse-che/tomcat/bin
Next step is stop the Tomcat instance and finally delete the folder EclipseChe3.12.5.2.app because that's my Eclipse Che version.
So, I hope this is helpfully for you
If you are using Docker the process is different.
Get the list of active instance in Docker by running the following command in Terminal: docker ps
Then you can stop the running instance by running in docker stop XXX where XXX is the name of the running container instance. You may have more than one container instance to stop.
Then you can remove it by running docker rm XXX and then you can list images that are present on your system by running docker images
If you want to completely remove Che, then pickup for the images list the ones that are related to che and remove them by running the following command: docker mi image_name
Last command to stop docker on your mac will be docker-machin stop environment_name. If you do not know the name of the running environment you can figure it out by running docker-machine ls