sail icon indicating copy to clipboard operation
sail copied to clipboard

Deprecated: Instant, pre-configured VS Code development environments.

Results 55 sail issues
Sort by recently updated
recently updated
newest added

I copied from the [documentation](https://sail.dev/docs/concepts/projects/#configuration): ```dockerfile FROM codercom/ubuntu-dev-node12:latest RUN apt-get update && apt-get install -y \ bsdtar \ && rm -rf /var/lib/apt/lists/* ``` But the command fails: > E: Could...

When I use ```dockerfile FROM codercom/ubuntu-dev-node12:latest RUN installext \ dbaeumer.vscode-eslint \ burkeholland.simple-react-snippets ``` I get the error: > /bin/sh: 1: installext: not found Basing it on **`codercom/ubuntu-dev:latest`** works fine. Would...

After encountering #253, I realized that the installext command doesn't seem to work at all. ```dockerfile FROM codercom/ubuntu-dev:latest RUN installext \ msjsdiag.debugger-for-chrome \ dbaeumer.vscode-eslint \ burkeholland.simple-react-snippets ``` > **Step 2/3...

I get this error in the console on startup: > sail.js:73 Uncaught TypeError: Cannot read property 'action' of undefined > at sail.js:73 > at Object.t.initialize (client.ts:87) > at j.open (web.main.ts:88)...

When following the [Quick Start](https://github.com/cdr/sail#quick-start), there's Requirements, Install, Verify, Run. But then, the container asks for a server password: ![image](https://user-images.githubusercontent.com/3534391/67863592-79a8a280-fb24-11e9-850b-84e1d9642221.png) What to enter here, or where to set it? It...

Attempted to give this project a go. It is clearly broken, at least on Docker for Desktop macOS 10.13.6 docker version: 19.03.4 ``` ~  sail run cdr/sshcode 2019-11-14 17:19:06...

Looking through the images directory, it is clear that code is lifted from the docker-library sources. This clause from the BSD-3 licenses are specifically ignored: - Redistributions of source code...

2019-09-29 10:31:44 INFO using repo image cdr_sail 2019-09-29 10:31:44 DEBUG host home dir: /root 2019-09-29 10:31:44 INFO writing sail proxy logs to /tmp/sailproxy_cdr_sail281735327 2019-09-29 10:31:45 DEBUG started container 2019-09-29 10:31:45...

I would like to: Sail run same image (multiple but on different ports) at this moment i don't see parameter to pass, something like --port would be helpful. Any alternative...

Now repo as filepath works for run, shell commands, but it does not support rm command. ``` $ sail run . $ sail shell . $ sail rm . ```...