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 hyperledger-cacti#3284
Signed-off-by: raynato.c.pedrajeta <[email protected]>
  • Loading branch information
raynatopedrajeta committed Aug 13, 2024
1 parent 141ee24 commit d4ff544
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/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/[email protected]

- 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"
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 daml-all-in-one 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

0 comments on commit d4ff544

Please sign in to comment.