|
1 | 1 | # Docker Development Environment
|
2 | 2 |
|
3 |
| -This repository builds the Evidence development environment Docker image. An instance container can be used as a development environment for Evidence projects using a mounted directory. Using this container allows end users to develop Evidence sites without the need for installing any toolchains besides `Docker`. |
| 3 | +The Evidence Docker Development Environment (devenv) image is available on [Docker Hub](https://hub.docker.com/repositories/evidencedev). |
4 | 4 |
|
5 |
| -## Pre-requisites |
6 |
| -Docker tools are installed using [Docker Desktop](https://www.docker.com/products/docker-desktop/) (recommended) OR using [binaries](https://docs.docker.com/engine/install/binaries/). |
| 5 | +The `devenv` image can be used as a development environment for Evidence projects by running it as a container with a mounted directory. Utilizing this container allows developers to work on Evidence sites without the need to install any additional toolchains other than `Docker`. For instance, there is no necessity to install `npm` or `node`. |
7 | 6 |
|
8 |
| -## Running the development environment using Docker commands (Alternative 1) |
| 7 | +This repository contains the Dockerfiles, the publishing actions, and usage documentation pertaining to [Evidence `devenv` images](https://hub.docker.com/repositories/evidencedev). |
9 | 8 |
|
10 |
| -* Creating a **new Evidence project** from scratch using the Evidence project template |
11 |
| -``` |
12 |
| - cd <path-to-your-evidence-project-root> #i.e the directory where you'd like your Evidence project to be rooted |
13 |
| - docker pull evidencedev/devenv:latest |
14 |
| - docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm evidencedev/devenv:latest --init |
| 9 | +## Using the Evidence Docker Development Environment |
| 10 | + |
| 11 | +### Pre-requisites |
| 12 | +Ensure the Docker tool chain is installed via [Docker Desktop](https://www.docker.com/products/docker-desktop/) (recommended) OR using [binaries](https://docs.docker.com/engine/install/binaries/). |
15 | 13 |
|
16 |
| - # - You should see the template site up when you point your browser to localhost:3000. |
17 |
| - # - You should see new files, copied from the Evidence project template, in <path-to-your-evidence-project-root>. |
18 |
| - # - Any subsequent edits made in <path-to-your-evidence-project-root> should be reflected on the browser. |
| 14 | +### Starting the Docker Evidence Development Environment |
19 | 15 |
|
| 16 | +#### Option 1: Create a **new Evidence project** from scratch using the Evidence project template: |
| 17 | +``` |
| 18 | + cd <path-to-your-evidence-project-root> |
| 19 | + docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm evidencedev/devenv:latest --init |
20 | 20 | ```
|
| 21 | +* In this case, `<path-to-your-evidence-project-root>` should be an empty directory. |
| 22 | +* You should see the template site up when you point your browser to `localhost:3000`. |
| 23 | +* You should see new files, copied from the Evidence project template, in `<path-to-your-evidence-project-root>`. |
| 24 | +* Any subsequent edits made in `<path-to-your-evidence-project-root>` should be reflected on the browser. |
| 25 | +* If you are using Windows without PowerShell, you will need to replace `$(pwd)` with the full path to your Evidence project root directory or `%cd%` |
21 | 26 |
|
22 |
| -* Work with an **existing Evidence** project |
| 27 | +#### Option 2: Work with an **existing Evidence** project |
23 | 28 | ```
|
24 | 29 | cd <path-to-your-evidence-project-root>
|
25 |
| - docker pull evidencedev/devenv:latest |
26 | 30 | docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm evidencedev/devenv:latest
|
27 |
| -
|
28 |
| - # - You should see your site up when you point your browser to localhost:3000. |
29 |
| - # - Any edits made in <path-to-your-evidence-project-root> should be reflected on the browser. |
30 | 31 | ```
|
| 32 | +* In this case, `<path-to-your-evidence-project-root>` should should contain an Evidence project. |
| 33 | +* You should see your site up when you point your browser to `localhost:3000`. |
| 34 | +* Any edits made in `<path-to-your-evidence-project-root>` should be reflected on the browser. |
| 35 | +* If you are using Windows without PowerShell, you will need to replace `$(pwd)` with the full path to your Evidence project root directory or `%cd%` |
31 | 36 |
|
32 |
| -Note: if you are running Evidence from a new Apple Silicon MacBook (or any machine with an `arm` chipset), you'll have to provide a `--platform linux/amd64` argument to Docker as well. |
| 37 | +##### Note for M1/M2 Mac Users using DuckDB |
| 38 | +* If you are using an ARM M1/M2 Mac (Late 2021 Macs and later), you will need to use the `--platform linux/amd64` flag to run the Evidence devenv container with either of the options above. For instance: |
| 39 | +``` |
| 40 | + cd <path-to-your-evidence-project-root> |
| 41 | + docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm --platform linux/amd64 evidencedev/devenv:latest |
| 42 | +``` |
| 43 | +* Startup can be quite slow due to emulation. You may want to consider an alternative approach such as using Codespaces mentioned below. |
33 | 44 |
|
34 |
| -## Running the development environment using a helper script (Alternative 2) |
35 |
| -Download `https://github.com/evidence-dev/docker-devenv/blob/main/start-devenv.sh`. |
| 45 | +### Alternative Start Options |
36 | 46 |
|
37 |
| -* To create a **new Evidence project**, execute the following commands |
38 |
| -``` |
39 |
| - chmod +x <path-to>/start-devenv.sh |
40 |
| - cd <path-to-your-new-evidence-project-root> |
41 |
| - <path-to>/start-devenv.sh --init |
42 |
| -``` |
| 47 | +#### Using a Script to Start the Docker Development Evironment |
| 48 | +If you'd rather not type out the docker commands, you have the option of starting the devenv with a [script](./starting-with-script.md) detailed [here](./running-with-script.md). |
43 | 49 |
|
44 |
| -* To work with an **existing Evidence** project, execute the following commands. |
45 |
| -``` |
46 |
| - chmod +x <path-to>/start-devenv.sh |
47 |
| - cd <path-to-your-existing-evidence-project-root> |
48 |
| - <path-to>/start-devenv.sh |
49 |
| -``` |
| 50 | +#### Running a Smaller Image |
| 51 | +If you are not using DuckDB, and you have limited storage on your disk, you can use a smaller `devenv` image by replacing the `evidencedev/devenv:latest` image with `evidencedev/devenv-lite:latest` in the above commands. |
50 | 52 |
|
51 |
| -Run `start-devenv.sh --help` for more details on using this script. |
52 | 53 |
|
53 |
| -As the project develops, we'll likely add more options to this script. This script simply masks all the options that need to be provided to `docker`. |
| 54 | +### Connecting to a Database from the Development Container |
| 55 | +* You can setup your DB connection as [documented](https://docs.evidence.dev/core-concepts/data-sources/). However there are few caveats to note when using the Evidence development environment container. |
| 56 | + * If your database is hosted on your `host` machine, you'll have to ensure that the Database host is set to `host.docker.internal` either via the settings or your database config file (instead of `localhost`, `0.0.0.0`, etc). For instance: |
| 57 | + ``` |
| 58 | + { |
| 59 | + "host": "host.docker.internal", |
| 60 | + "database": "yourDBname", |
| 61 | + "port": 5432, |
| 62 | + "user": "yourUsername" |
| 63 | + } |
| 64 | + ``` |
| 65 | + * If your database is hosted externally (e.g on the cloud), you'll have to ensure your docker container has permissions to access the outside world. |
54 | 66 |
|
55 |
| -## Connecting to a Dababase from the development container |
| 67 | +### Stopping the Running devenv container |
| 68 | +* Option 1: `docker ps` to list all running containers, and copy the container ID of the running Evidence development environment container, and then run `docker stop <container-id>`. |
| 69 | +* Option 2: Use `Ctrl+C` to stop the running container on terminal. |
56 | 70 |
|
57 |
| -If your database is hosted on your `host` machine, you'll have to ensure that the Database host is set to `host.docker.internal` either via the settings or your database config file (instead of `localhost`, `0.0.0.0`, etc). For instance: |
58 |
| -``` |
59 |
| -{ |
60 |
| - "host": "host.docker.internal", |
61 |
| - "database": "yourDBname", |
62 |
| - "port": 5432, |
63 |
| - "user": "yourUsername" |
64 |
| -} |
65 |
| -``` |
66 | 71 |
|
67 |
| -If your database is hosted externally (e.g on the cloud), you'll have to ensure your docker container has permissions to access the outside world. |
68 |
| -## Stopping the running container |
69 |
| -Abort the terminal window using `CTRL+C` or use the Docker [command line](https://docs.docker.com/engine/reference/commandline/stop/) or Docker Desktop to stop the running container. |
| 72 | +## Alternative to Using the Evidence Devenv |
| 73 | +Github Codespaces are another way to setup an Evidence dev environment without installing `npm`, `node` etc. See [Evidence installation docs](https://docs.evidence.dev/getting-started/install-evidence) for more information. |
70 | 74 |
|
71 |
| -## Building and running the image locally |
72 |
| -* This only applies to the development of this Docker image. |
| 75 | +## Development notes |
| 76 | +This section only applies if you are contributing to this repo. |
73 | 77 |
|
| 78 | +### Testing the image locally |
74 | 79 | ```
|
75 |
| -docker build -t <image-name> . |
| 80 | +docker build -t <test-image-name> . |
76 | 81 | cd <path-to-your-evidence-project-root>
|
77 |
| -docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm <image-name> <command-to-run> |
| 82 | +docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm <test-image-name> <command-to-run> |
78 | 83 | ```
|
79 | 84 |
|
80 |
| -## Publishing the latest image to Docker Hub |
81 |
| -Currently the image is hosted on Dockerhub. To build and publish a new version, follow these steps |
82 |
| -1. Login to Dockerhub => `docker login` |
83 |
| -2. Build the image => `docker build -t evidencedev/devenv:latest .` |
84 |
| -3. Push the image to Dockerhub => `docker push evidencedev/devenv:latest` |
85 |
| - |
86 |
| -For login credentials, see `EvidenceDev Dockerhub Admin` in 1password. This is setup under `[email protected]` (didn't think to create a google group for this at the time e.g [email protected] - will do so in the future - feel free to use it in the meantime). |
87 |
| - |
88 |
| -We should consider hosting this in AWS with CD/CI setup to automatically publish new versions of the image from main |
| 85 | +### Manually publishing the latest image to Docker Hub (Evidence team only) |
| 86 | +Currently the image is hosted on Docker Hub and are re-built on pushes to main. To build and publish a new version manually, follow these steps |
| 87 | +1. Login to Docker Hub => `docker login` |
| 88 | +2. Build and push the image => `docker buildx build --platform linux/amd64,linux/arm64 -t evidencedev/devenv:latest . --push` |
0 commit comments