Questions tagged [rkt]

rkt is a CLI for running app containers on Linux.

rkt is an implementation of the App Container spec. rkt's native image format (ACI) and runtime/execution environment (pods) are defined in the specification.

8 questions
2
votes
1 answer

Encrypted or Password Protected Docker Container

I have some Docker containers. I want to login the containers with a password. Is it possible? If it is not possible then is there way to encrypt some folders in Docker? I have tried rkt as well. I could not manage to enable the password protection…
user454491
  • 21
  • 1
  • 2
2
votes
1 answer

How do I add a new application container to an existing rkt pod?

How do I add a new application container to an existing rkt pod? The documentation for rkt run shows how to launch multiple applications in a pod using a single command. How might I achieve the same effect using multiple commands?
Derek Mahar
  • 801
  • 2
  • 8
  • 15
1
vote
2 answers

"EtcdException: Could not get the list of servers" while running calico rkt container on coreos

I have two coreos stable v1122.2.0 machines, each one with etcd2 configured with tls. I created the certificates using https://github.com/coreos/etcd/tree/master/hack/tls-setup. now I'm trying to configure calico-node to operate on my coreos master…
ufk
  • 323
  • 3
  • 7
  • 26
1
vote
1 answer

How to add capabilities to rkt container

I'm very new to rkt (coming from docker). In docker I can add NET_ADMIN capabilities to a container: docker run -d -p 53:53/tcp --cap-add=NET_ADMIN my_image How do I do this in rkt?
Freedom_Ben
  • 115
  • 7
0
votes
1 answer

is it possible to use `docker` volumes in development with host user permissions?

docker looks like comfortable tool for sharing development environment. But sharing host volumes has the important drawback. docker usually (always?) runs container under root user, and docker creates new files with root permissions, that is a…
0
votes
0 answers

CoreOS / rkt / systemd - how to access low-numbered ports?

[originally asked at Stack Overflow but put on hold there with the suggestion that I ask here.] I have a web app, written in go, which accepts traffic on ports 80 and 443. It works fine if I: copy the executable binary to a server running…
AlpineCarver
  • 101
  • 1
0
votes
1 answer

rkt container won't let me use ports

I am trying to build a rkt (rkt 0.6.1) container (experimental poc) on fedora 22, and it seems that I can not assign network ports. I think I had it running once, but somehow now it fails. It seems not to be applicaion specific, I tried httpd on…
Isaac
  • 1,195
  • 3
  • 25
  • 43
-1
votes
1 answer

MariaDB keeps quitting when I run it via Supervisord

I'm trying to set up a LEMP stack in rkt (with Docker files), so I'm using Supervisord to get everything running in the same container. When I build and start the Mariadb container separately, it works fine. As soon as I try to run it via…
Darakir
  • 11
  • 4