Using one command to list all asp.net docker images - docker

From here, we can obtain the images.
My question would be is there a simple command to list all available images on my Windows desktop?
EDIT:
I want to list all available images in the current coreclr framework repository. Based on my Windows desktop .net installation, is the dnu command or docker command to do that?

If you don't have any grep available, then you can use findstr;
c:\git>docker images | findstr /R /C:"microsoft/aspnet"
microsoft/aspnet 1.0.0-rc1-final c2ddc1b14fd9 3 months ago 742.5 MB
microsoft/aspnet 1.0.0-beta8 ec21b7401dc2 4 months ago 742.4 MB
microsoft/aspnet 1.0.0-beta7 cd81e77e42bf 4 months ago 688.4 MB

Related

Docker search and description column

I have a problem with DESCRIPTION column in Docker Toolbox.
When I am searching for example like below:
I don't see full value in DESCRIPTION column. I didn't see anything about this problem in https://docs.docker.com/engine/reference/commandline/search/#extended-description.
There is some magic trick to resolved it?
Only way is put full description into "Readme"?
Use the --no-trunc switch:
# docker search --no-trunc oracle
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
oraclelinux Official Docker builds of Oracle Linux. 536 [OK]
sath89/oracle-12c Oracle Standard Edition 12c Release 1 with data mount support and etc 435 [OK]
frolvlad/alpine-oraclejdk8 The smallest Docker image with OracleJDK 8 (167MB) 355 [OK]
alexeiled/docker-oracle-xe-11g This is a working (hopefully) Oracle XE 11.2 on top of Ubuntu 14.04 LTS 277 [OK]
sath89/oracle-xe-11g Oracle xe 11g with database files mount support and graceful shutdown database files mount support 230 [OK]
...
I think docker toolbox is some Windows related thing. Have tested it on Linux only but It should work on Win too, when it's a full compatible port of the Linux Docker.

Which source/tag should be used to download Odoo 12 community for Synology/Docker

Good Day:
I have been trying to create an Odoo 12 community version container on Docker in Synology DSM. Which source/tag should I use for this purpose?
The following source is the one I have been working with directly from Synology Docker:
https://hub.docker.com/_/odoo/
(Tag: Latest)
The only thing I have been able to do is creating a container for Odoo 12 enterprise, but not for Odoo 12 community.
Please advise.
Regards,
The official Odoo docker version is currently from date 2018-10-08 and it had a bug that showed incorrectly Enterprise version in Settings page also in Community version. So the good news is that you are in fact already running Community version. The bug was fixed in this commit.
The more complicated question is what version of docker image should you run. The official Odoo docker image (library/odoo or _/odoo or just odoo) does not get updated very frequently. It is not updated to fix issues. I would not recommend it for any other use than testing.
You can use other images that are updated more frequently and have static tags, e.g. I maintain an image with nightly Odoo builds. It is named veivaa/odoo. You can use a specific version of Odoo nightly build with tag version-date, e.g. veivaa/odoo:12.0-20181106. The nightly image can be found in Docker store at https://store.docker.com/community/images/veivaa/odoo. This version is updated on ”best effort” bases.
You find more information on running Odoo in Docker in my blog.
It is also not best practice with Docker to use the latest tag in production use or if you need to be able to keep the container stable. This is because you would get a different version depending on when you pull the image. Best practice is to either use a stable nonchanging tag, or build your own Dockerfile and image in own container registry.

How can i deploy the kepler_scientific_workflow_run_engine in docker container?

I would like to deploy the engine of kepler scientific workflow in docker?
But i could not the .war file in the kepler_installer. Should i create it ?
If yes how can i create ?
You can check if a simple docker run of the kepler/kepler image is enough (see its Dockerfile here, based of the kepler-base Dockerfile)
That way, there would not be any need to create a war.
If was writtern 2-3 years ago for Kepler 2.4 though. The current version is 2.6.

docker IIS container locks up

I am trying to follow the instructions to run an IIS container
I am a total newbie so I might be missing a step.
I am using WIndows 10 Pro with Docker for Windows set to Windows.
Docker is Version 17.06.0-ce-win18 (12627)
Channel: stable
d9b6651
I downloaded the image and then ran
Docker run 30
where 30 was my container
The container seems to have locked up showing
This is followed by issue 44
Latest version of `microsoft/iis' image produces following output to container logs. This was not the case on previous versions
So:
check if the error persists when using microsoft/iis:nanoserver-10.0.14393.1198 instead of :latest
the issue mentions: " Currently trying to work around this issue by using SPINNER instead of servicemonitor"

Options to use latest docker on centos 6?

I would like to try new features in latest version of docker (1.10 for now), like "docker networks" and "docker volume".
I have CentOs 6 and I CAN NOT upgrade OS due to some restrictions (understand I can use latest docker in centos 7). I do have root permission.
I am wondering what's the options I have to try latest docker?
You can try to use a static binary to run docker, but this is all at your own risk; CentOS 6 runs on kernel 2.6, which is 13 years old now. That kernel misses various things needed to run Docker (e.g. Overlay networking is not supported), and is known for having some issues.
Note that running docker-in-docker may get you around "installing" docker 1.10, but will still run on the same kernel, so you'll end up with the same issues
You could install docker-machine and run docker-machine upgrade default
As described here
EDIT - This does not apply to you
But this question is possibly a duplicate of yours

Resources