Skip to content

Commit 1ff7bf7

Browse files
authored
issue-9 support Duck DB in Evidence Docker Devenv (#10)
This PR 1. Fixes: #9 * Original issue DuckDB depends on glibc that is not shipped with alpine linux. * Fix was to provide a ubuntu image 3. Push a arm64 image in addition to amd64 image on CI 4. Push a `lite` image for non-duckdb use in case someone needs to save space on their HD. 5. Evidence now has a dockerhub org (than an individual 5. Replaced the docs
1 parent 54b7edf commit 1ff7bf7

File tree

5 files changed

+118
-77
lines changed

5 files changed

+118
-77
lines changed

.github/workflows/build-and-publish.yml

+20-13
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,30 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
-
12-
name: Checkout
13-
uses: actions/checkout@v3
14-
-
15-
name: Login to Docker Hub
16-
uses: docker/login-action@v1
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- name: Set up QEMU
14+
uses: docker/setup-qemu-action@v3
15+
- name: Set up Docker Buildx
16+
uses: docker/setup-buildx-action@v3
17+
- name: Login to Docker Hub
18+
uses: docker/login-action@v3
1719
with:
1820
username: ${{ secrets.DOCKER_HUB_USERNAME }}
1921
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
20-
-
21-
name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v1
23-
-
24-
name: Build and push
25-
uses: docker/build-push-action@v2
22+
- name: Build and push main image
23+
uses: docker/build-push-action@v5
2624
with:
2725
context: .
2826
file: ./Dockerfile
2927
push: true
30-
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/devenv:latest
28+
platforms: linux/amd64,linux/arm64
29+
tags: evidencedev/devenv:latest
30+
- name: Build and push lite image (no DuckDB support)
31+
uses: docker/build-push-action@v5
32+
with:
33+
context: .
34+
file: ./Dockerfile-lite
35+
push: true
36+
platforms: linux/amd64,linux/arm64
37+
tags: evidencedev/devenv-lite:latest

Dockerfile

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
FROM node:19-alpine3.16
1+
FROM sitespeedio/node:ubuntu-22.04-nodejs-18.16.0
22
ARG WORKSPACE_DIR=/evidence-workspace
33

4-
RUN apk add --no-cache bash curl wget nano git && \
5-
apk add xdg-utils && \
4+
RUN apt-get update && apt-get install -y \
5+
curl wget nano git xdg-utils && \
66
npm install -g degit && \
77
mkdir -p ${WORKSPACE_DIR} && \
8-
mkdir -p /evidence-bin
8+
mkdir -p /evidence-bin && \
9+
rm -rf /var/lib/apt/lists/*
910

1011
COPY bootstrap.sh /evidence-bin/bootstrap.sh
1112
WORKDIR ${WORKSPACE_DIR}

Dockerfile-lite

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:18-alpine3.16
2+
ARG WORKSPACE_DIR=/evidence-workspace
3+
4+
RUN apk add --no-cache bash curl wget nano git && \
5+
apk add xdg-utils && \
6+
npm install -g degit && \
7+
mkdir -p ${WORKSPACE_DIR} && \
8+
mkdir -p /evidence-bin
9+
10+
COPY bootstrap.sh /evidence-bin/bootstrap.sh
11+
WORKDIR ${WORKSPACE_DIR}
12+
13+
ENTRYPOINT [ "bash", "/evidence-bin/bootstrap.sh" ]

README.md

+60-60
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,88 @@
11
# Docker Development Environment
22

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).
44

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`.
76

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).
98

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/).
1513

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
1915

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
2020
```
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%`
2126

22-
* Work with an **existing Evidence** project
27+
#### Option 2: Work with an **existing Evidence** project
2328
```
2429
cd <path-to-your-evidence-project-root>
25-
docker pull evidencedev/devenv:latest
2630
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.
3031
```
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%`
3136

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.
3344

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
3646

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).
4349

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.
5052

51-
Run `start-devenv.sh --help` for more details on using this script.
5253

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.
5466
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.
5670
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-
```
6671
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.
7074
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.
7377
78+
### Testing the image locally
7479
```
75-
docker build -t <image-name> .
80+
docker build -t <test-image-name> .
7681
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>
7883
```
7984
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`

starting-with-script.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Running the development environment using a helper script
2+
This documents an alternative way to start the Evidence `devenv` that is a wraps `docker` commands described in the [main README](https://github.com/evidence-dev/docker-devenv/tree/main#readme).
3+
4+
* Download `https://github.com/evidence-dev/docker-devenv/blob/main/start-devenv.sh`.
5+
* To create a **new Evidence project**, execute the following commands
6+
```
7+
chmod +x <path-to>/start-devenv.sh
8+
cd <path-to-your-new-evidence-project-root>
9+
<path-to>/start-devenv.sh --init
10+
```
11+
* To work with an **existing Evidence** project, execute the following commands.
12+
```
13+
chmod +x <path-to>/start-devenv.sh
14+
cd <path-to-your-existing-evidence-project-root>
15+
<path-to>/start-devenv.sh
16+
```
17+
18+
Run `start-devenv.sh --help` for more details on using this script.
19+
20+
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`.

0 commit comments

Comments
 (0)