Ben Elgar

Results 14 issues of Ben Elgar

Bootstrap provides the ability to create static form controls (see http://getbootstrap.com/css/#forms-controls-static). It would be excellent to have them available here.

enhancement

I believe the issue is a mismatch between what we refer to in exo as a container and what docker refers to as a container. Docker treats containers as disposable...

bug

This is a manifest that is apparently valid and is successfully applied: ```exo.hcl exo = "0.1" components { container "t0" { image = "bash" command = "sleep infinity" } container...

bug

If one attempts to start a manifest file that has more than one container attached, only one of the containers will successfully start: `exo.hcl`: ```hcl exo = "0.1" components {...

bug

The problem is that docker logs don't appear (and probably never have) when using exo in WSL. I spent some time debugging this with John and my understanding of the...

bug

``` ❯ cat docker-compose.yml services: t0: image: bash command: "sleep infinity" t1: image: bash command: "sleep infinity" depends_on: - "t0" ❯ dexo manifest format docker-compose.yml ❯ cat docker-compose.yml exo =...

bug

When we create a project using one of the templates that templates manifest should be automatically applied upon creation. There are two reasons this doesn't happen right now: 1. https://github.com/deref/exo/issues/482,...

bug

We don't provide users with any mechanism to remove/empty docker volumes — the equivalent of running `docker volume rm my-vol`. Right now they have to run that command directly. The...

bug

In order to initialise the project what I'd like to do is something like ``` exo workspace init exo start db npx prisma migrate dev exo stop db ``` In...

bug

If a process doesn't exist we should throw an error rather appearing to succeed: ``` ❯ exo start non-existent-process; echo $? Job URL: http://localhost:44643/#/jobs/4k3e4914xqck3y47w5grwdtwkw starting 0 ``` ![image](https://user-images.githubusercontent.com/3443024/140519546-bc52ed42-12fc-4b98-819a-b6c954ec578a.png)

bug