You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 12, 2018. It is now read-only.
Please note that the CLI is currently limited to connecting to a local `/var/run/docker.sock`
17
+
socket only and the user that runs `devstep` commands will need [non-root access to it](http://docs.docker.io/installation/ubuntulinux/#giving-non-root-access).
18
+
Support for execution over TCP is likely to be added at some point.
19
+
19
20
20
21
> **IMPORTANT**: A `developer` user will be used by Devstep and it assumes your
21
22
user and group ids are equal to `1000` when using the CLI or the container's init
@@ -29,7 +30,13 @@ Docker adds support for user namespaces ([#6600](https://github.com/dotcloud/doc
29
30
30
31
> The `1000` id was chosen because it is the default uid / gid of Ubuntu Desktop users
31
32
that are created during the installation process. To work around this limitation
32
-
you can build your own image with the appropriate ids and add a `DEVSTEP_SOURCE_IMAGE=<YOUR-IMAGE>`
33
-
line to your `~/.devsteprc` so that the image is used as a source for your projects.
33
+
you can build your own image with the appropriate ids and add a `source_image: '<YOUR-IMAGE>:<OPTIONAL-TAG>'`
34
+
line to your `~/devstep.yml` so that the image is used as a source for your projects.
35
+
36
+
## Bash autocomplete
37
+
38
+
An autocompletion script can be installed using the one liner below:
34
39
35
-
# TODO: Update above to reflect the new yaml configs
40
+
```sh
41
+
curl -sL https://github.com/codegangsta/cli/raw/master/autocomplete/bash_autocomplete | sed 's/$PROG/devstep/'| sudo tee /etc/bash_completion.d/devstep
0 commit comments