You are not logged in.
Pages: 1
I really only have one quick question: Is docker.io which I find in repo the same thing as Docker?
Background (since you asked): When back from summer vacation it is time to up-grade my work computer and going for Linux instead of W7 is an option. However, two of the CAE tools I use do not support the Linux flavour on offer. It has been suggested that Docker could be a workaround. I am pondering playing a little with Docker on my home system -- unless strongly adviced not to.
/Martin
"Problems worthy of attack
prove their worth by hitting back."
Piet Hein
Offline
Install it and see? However...
https://docs.docker.com/engine/installa … ux/debian/
^ Purging docker.io is one of the steps. I'd use this to get the latest current 'stable' version, and keep it up-to-date using their instructions...
sudo apt-get update && sudo apt-get upgrade docker-engine
I don't care what you do at home. Would you care to explain?
Offline
Ninja'd by the speedy hhh.
But here's my input anyway....
= = = = = =
YES, it's the same ...
But not to be confused with "docker" in the repos - which is "System tray for KDE3/GNOME2 docklet applications"
31 Jul 16 @ 19:09:03 ~
$ sho docker
aptitude show filename
Package: docker
State: not installed
Version: 1.5-1
Priority: optional
Section: x11
Maintainer: Paul Tagliamonte <paultag@debian.org>
Architecture: amd64
Uncompressed Size: 65.5 k
Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.12.0), libx11-6
Conflicts: docker
Description: System tray for KDE3/GNOME2 docklet applications
Docker is a docking application (WindowMaker dock app) which acts as a system tray for any desktop environment,
allowing you to have a system tray without running the KDE/GNOME panel Docker was designed to work with Openbox
2, but it should work fine in any window manager.
Tags: interface::x11, role::program, scope::utility, suite::gnome, suite::gnustep, suite::kde, uitoolkit::xlib,
x11::applet, x11::application
31 Jul 16 @ 19:09:11 ~
$ sho docker.io
aptitude show filename
Package: docker.io
State: not installed
Version: 1.6.2~dfsg1-1~bpo8+1
Priority: optional
Section: admin
Maintainer: Paul Tagliamonte <paultag@debian.org>
Architecture: amd64
Uncompressed Size: 22.0 M
Depends: adduser, iptables, init-system-helpers (>= 1.18~), perl, libapparmor1 (>= 2.6~devel), libc6 (>= 2.14),
libdevmapper1.02.1 (>= 2:1.02.90), libsqlite3-0 (>= 3.5.9)
Recommends: aufs-tools, ca-certificates, cgroupfs-mount | cgroup-lite, git, xz-utils
Suggests: btrfs-tools, debootstrap, lxc, rinse
Conflicts: docker.io
Breaks: docker (< 1.5~), docker (< 1.5~)
Replaces: docker (< 1.5~), docker (< 1.5~)
Description: Linux container runtime
Docker complements kernel namespacing with a high-level API which operates at the process level. It runs unix
processes with strong guarantees of isolation and repeatability across servers.
Docker is a great building block for automating distributed systems: large-scale web deployments, database
clusters, continuous deployment systems, private PaaS, service-oriented architectures, etc.
This package contains the daemon and client. Using docker.io on non-amd64 hosts is not supported at this time.
Please be careful when using it on anything besides amd64.
Also, note that kernel version 3.8 or above is required for proper operation of the daemon process, and that
any lower versions may have subtle and/or glaring issues.
Homepage: https://dockerproject.com
31 Jul 16 @ 19:09:16 ~
$
So when you get it make sure you:
sudo apt-get install docker.io
Simulated get for both:
alias sget='sudo apt-get install --no-install-recommends --simulate'
31 Jul 16 @ 19:09:16 ~
$ sget docker
[sudo] password for sector11:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
docker
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst docker (1.5-1 Debian:8.5/stable [amd64])
Conf docker (1.5-1 Debian:8.5/stable [amd64])
31 Jul 16 @ 19:22:07 ~
$ sget docker.io
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libapparmor1
Suggested packages:
btrfs-tools debootstrap lxc rinse
Recommended packages:
aufs-tools cgroupfs-mount cgroup-lite git
The following NEW packages will be installed:
docker.io libapparmor1
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst libapparmor1 (2.9.0-3 Debian:8.5/stable [amd64])
Inst docker.io (1.6.2~dfsg1-1~bpo8+1 Debian Backports:jessie-backports [amd64])
Conf libapparmor1 (2.9.0-3 Debian:8.5/stable [amd64])
Conf docker.io (1.6.2~dfsg1-1~bpo8+1 Debian Backports:jessie-backports [amd64])
31 Jul 16 @ 19:22:16 ~
$
EDIT: I type really slow and check things out as I create posts. {sigh}
Last edited by Sector11 (2016-07-31 22:25:58)
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
I don't care what you do at home. Would you care to explain?
Offline
Thanks guys, good respons.
I have tried to read up a little on LXC, searching for howtos etc. What I have not found so far is information confirming/showing that I can do the following. Having a box running Linux flavour A I can fool application ABC into believing that this LXC (or Docker or whatever) container is actually the Linux flavour C that ABC needs to install and run properly.
Any leads are appreciated.
/Martin
"Problems worthy of attack
prove their worth by hitting back."
Piet Hein
Offline
I'm also doing some exploration of the LXC (and now LXD) tools. I've found the following blog posts very helpful - https://www.stgraber.org/2013/12/20/lxc … st-series/
Espcially since they're written by the lead dev on the LXC/LXD team.
If you're interested in LXD this post series is good - https://www.stgraber.org/2016/03/11/lxd … eries-012/
*Note* LXD is more of an Ubuntu thing, at least for the moment. But it's built on LXC so it might be fairly simple to bring over to a more direct Debian spin.
Last edited by geekosupremo (2016-08-01 23:41:06)
Offline
Pages: 1