Skip to content

Commit

Permalink
feat(connector-daml): aio image
Browse files Browse the repository at this point in the history
Primary Changes
---------------
1. Create a docker image on daml-all-in-one folder that contains
an initial creation of DAML smart contracts
Fixes #3284
Signed-off-by: raynato.c.pedrajeta <raynato.c.pedrajeta@accenture.com>
  • Loading branch information
raynatopedrajeta committed Jul 21, 2024
1 parent 603ff0e commit 83d928c
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2630,6 +2630,13 @@ jobs:
- name: ghcr.io/hyperledger/cactus-fabric2-all-in-one
run: DOCKER_BUILDKIT=1 docker build ./tools/docker/fabric-all-in-one/ -f ./tools/docker/fabric-all-in-one/Dockerfile_v2.x

ghcr-daml-all-in-one:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- name: ghcr.io/hyperledger/daml-all-in-one
run: DOCKER_BUILDKIT=1 docker build ./tools/docker/daml-all-in-one/ -f ./tools/docker/daml-all-in-one/Dockerfile

ghcr-keychain-vault-server:
runs-on: ubuntu-22.04
steps:
Expand Down
4 changes: 4 additions & 0 deletions tools/docker/daml-all-in-one/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# DAMLAUTH = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJodHRwczovL2RhbWwuY29tL2xlZGdlci1hcGkiOnsibGVkZ2VySWQiOiJzYW5kYm94IiwiYXBwbGljYXRpb25JZCI6ImZvb2JhciIsImFjdEFzIjpbIkFsaWNlIl19fQ.1Y9BBFH5uVz1Nhfmx12G_ECJVcMncwm-XLaWM40EHbY
KEY=value
ANOTHER_KEY="val"
DAML_AUTH="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJodHRwczovL2RhbWwuY29tL2xlZGdlci1hcGkiOnsibGVkZ2VySWQiOiJzYW5kYm94IiwiYXBwbGljYXRpb25JZCI6ImZvb2JhciIsImFjdEFzIjpbIkFsaWNlIl19fQ.1Y9BBFH5uVz1Nhfmx12G_ECJVcMncwm-XLaWM40EHbY"
23 changes: 23 additions & 0 deletions tools/docker/daml-all-in-one/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM ubuntu:22.04

RUN apt update
RUN apt install curl openjdk-21-jdk -y
RUN curl -sSL https://get.daml.com/ | sh
ENV PATH="/root/.daml/bin:${PATH}"
RUN daml new create-daml-app --template create-daml-app
WORKDIR /create-daml-app

RUN apt-get update && apt-get install -y supervisor
RUN mkdir -p /var/log/supervisor
COPY supervisord.conf /etc/supervisord.conf

EXPOSE 9001

ENTRYPOINT ["/usr/bin/supervisord"]
CMD ["--configuration","/etc/supervisord.conf", "--nodaemon"]


COPY healthcheck.sh /healthcheck.sh
RUN chmod +x /healthcheck.sh

HEALTHCHECK --interval=30s --timeout=60s --start-period=100s --retries=100 CMD /healthcheck.sh
30 changes: 30 additions & 0 deletions tools/docker/daml-all-in-one/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# DAML All in One Image

An all in one DAML docker image with the `sample ledger contracts`.
- This docker image is for `testing` and `development` only.
- **Do NOT use in production!**

## Build an image locally

To build the besu v1.5.1 image locally, use:
```sh
docker build ./tools/docker/daml-all-in-one/ -t daml-all-in-one
```

## Running daml-all-in-one container:

```sh
docker run --privileged -p 6865:6865 -p 7575:7575 daml-all-in-one
```

The following ports are open on the container:

```yaml
- 6865:6865 # DAML Navigator
- 7575:7575 # DAML API entrypoint

```
## Logs of DAML via supervisord web UI:
Navigate your browser to http://localhost:9001
56 changes: 56 additions & 0 deletions tools/docker/daml-all-in-one/daml-all-in-one.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: daml-all-in-one-publish

on:
# Publish `v1.2.3` tags as releases.
push:
tags:
- v*

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
IMAGE_NAME: cactus-daml-all-in-one

jobs:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
build-tag-push-container:
runs-on: ubuntu-22.04
env:
DOCKER_BUILDKIT: 1
DOCKERFILE_PATH: ./tools/docker/daml-all-in-one/Dockerfile
DOCKER_BUILD_DIR: ./tools/docker/daml-all-in-one/
permissions:
packages: write
contents: read

steps:
- uses: actions/checkout@v4.1.1

- name: Build image
run: docker build "$DOCKER_BUILD_DIR" --file "$DOCKERFILE_PATH" --tag "$IMAGE_NAME" --label "runnumber=${GITHUB_RUN_ID}"

- name: Log in to registry
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Push image
run: |
SHORTHASH=$(git rev-parse --short "$GITHUB_SHA")
TODAYS_DATE="$(date +%F)"
DOCKER_TAG="$TODAYS_DATE-$SHORTHASH"
IMAGE_ID="ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME"
# Change all uppercase to lowercase
IMAGE_ID=$(echo "$IMAGE_ID" | tr '[:upper:]' '[:lower:]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/*" ]] && VERSION="${VERSION//^v//}"
# Do not use the `latest` tag at all, tag with date + git short hash if there is no git tag
[ "$VERSION" == "main" ] && VERSION=$DOCKER_TAG
echo IMAGE_ID="$IMAGE_ID"
echo VERSION="$VERSION"
docker tag "$IMAGE_NAME" "$IMAGE_ID:$VERSION"
docker push "$IMAGE_ID:$VERSION"
11 changes: 11 additions & 0 deletions tools/docker/daml-all-in-one/healthcheck.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
# Load the environment variables from the .env file
if [ -f .env ]; then
export $(cat .env | grep -v '#' | awk '/=/ {print $1}')
echo "possible"
fi

set -e
curl -X GET http://localhost:7575/v1/query -H "Content-Type: application/json" -H "Authorization: Bearer $DAML_AUTH"

echo "DAML API Success!"
15 changes: 15 additions & 0 deletions tools/docker/daml-all-in-one/supervisord.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[supervisord]
logfile_maxbytes = 50MB
logfile_backups=10
loglevel = info

[program:daml]
command=daml start
autostart=true
autorestart=true
stderr_logfile=/var/log/daml.err.log
stdout_logfile=/var/log/daml.out.log

[inet_http_server]
port = 0.0.0.0:9001

0 comments on commit 83d928c

Please sign in to comment.