These instructions cover how to run a Boomi Atom via various container configurations.
Docker
Download the attached docker-compose.yml
file:
services: atom: image: boomi/atom:4.3.1 container_name: volumes: - :/mnt/boomi:Z environment: - BOOMI_ATOMNAME= - INSTALL_TOKEN= - BOOMI_ACCOUNTID= - ATOM_LOCALHOSTID= ports: [9090:9090]
- The
BOOMI_ACCOUNTID
andINSTALL_TOKEN
will be provided to you by Cube. - The
BOOM_ATOMNAME
andATOM_LOCALHOSTID
should be a unique slug name for the atom.
Run the Atom via:
docker-compose -f atom-compose.yml up
Additional information can be found here.
Kubernetes
Download the attached boomi-atom-deployment.yaml
file and update the environment variables (these will be provided to you by Cube):
env:
- name: INSTALL_TOKEN
value: <AtomInstallerToken>
- name: BOOMI_ACCOUNTID
value: <AccountID>
To deploy Kubernetes:
kubectl create -f ./boomi-k8s
Additional information can be found here.