The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/scripts/docker
Soph 4a69714c37
[ops] Harmony Dockerfile go1.19 upgrade (#4460)
1 year ago
..
Dockerfile [ops] Harmony Dockerfile go1.19 upgrade (#4460) 1 year ago
README.md Release Candidate hotfix: dev -> main (#4333) 2 years ago
docker-compose.yaml Release Candidate hotfix: dev -> main (#4333) 2 years ago
docker-node.bat [s3] update release path for s3 branch 5 years ago
docker-node.sh additional option support for docker 5 years ago
run additional option support for docker 5 years ago

README.md

Docker Image

Included in this repo is a Dockerfile that you can launch harmony node for trying it out. Docker images are available on harmonyone/harmony.

You can build the docker image with the following commands:

make docker

If your build machine has an ARM-based chip, like Apple silicon (M1), the image is built for linux/arm64 by default. To build for x86_64, apply the --platform arg:

docker build --platform linux/amd64 -t harmonyone/harmony -f Dockerfile .

Before start the docker, dump the default config harmony.conf by running:

for testnet

docker run -v $(pwd)/config:/harmony --rm --name harmony harmonyone/harmony harmony config dump --network testnet harmony.conf

for mainnet

docker run -v $(pwd)/config:/harmony --rm --name harmony harmonyone/harmony harmony config dump harmony.conf

make your customization. harmony.conf should be mounted into default HOME directory /harmony inside the container. Assume harmony.conf, blskeys and hmykey are under ./config in your current working directory, you can start your docker container with the following command:

docker run -v $(pwd)/config:/harmony --rm --name harmony -it harmonyone/harmony

If you need to open another shell, just do:

docker exec -it harmonyone/harmony /bin/bash

We also provide a docker-compose file for local testing

To use the container in kubernetes, you can use a configmap or secret to mount the harmony.conf into the container

containers:
  - name: harmony
    image: harmonyone/harmony
    ports:
      - name: p2p
        containerPort: 9000  
      - name: rpc
        containerPort: 9500
      - name: ws
        containerPort: 9800     
    volumeMounts:
      - name: config
        mountPath: /harmony/harmony.conf
  volumes:
    - name: config
      configMap:
        name: cm-harmony-config
    

Your configmap cm-harmony-config should look like this:

apiVersion: v1
kind: ConfigMap
metadata:
  name: cm-harmony-config
data:
  harmony.conf: |
    ...