diff --git a/index.html b/index.html index 7f92512..2503d12 100644 --- a/index.html +++ b/index.html @@ -221,7 +221,6 @@ CMD ["/my_app/start.sh"]
Allows you to easily login to your container to inspect or administer things.
Password and challenge-response authentication are disabled by default. Only key authentication is allowed.
-Security note: by default, it allows access to a predefined key, in order to make debugging easy. You should replace this ASAP. See the instructions in the documentation.
Used for service supervision and management. Much easier to use than SysV init and supports restarting daemons when they crash. Much easier to use and more lightweight than Upstart.
@@ -243,8 +242,6 @@ CMD ["/my_app/start.sh"]The image is called phusion/baseimage, and is available on the Docker registry.
By default, it allows SSH access for a predefined key. This makes it easy for you to login to the container, but you should replace this key as soon as possible.
-Example Dockerfile:
# Use phusion/baseimage as base image. To make your builds # reproducible, make sure you lock down to a specific version, not @@ -256,9 +253,6 @@ FROM phusion/baseimage:<VERSION> # Set correct environment variables. ENV HOME /root -# Remove authentication rights for insecure_key. -RUN rm -f /root/.ssh/authorized_keys /home/*/.ssh/authorized_keys - # Regenerate SSH host keys. baseimage-docker does not contain any, so you # have to do that yourself. You may also comment out this instruction; the # init system will auto-generate one during boot. @@ -295,7 +289,7 @@ ADD memcached.sh /etc/service/memcached/run
This website only covers the basics. Please refer to the Github repository for more documentation. Topics include:
Having problems? Want to participate in development? Please post a message at the discussion forum.