Ben Elgar
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.
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...
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...
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 {...
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...
``` ❯ 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 =...
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,...
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...
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...
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 ``` 