Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

ngs-archives/docker-force-com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-force-com

Docker Automated build

A Docker Image for CI/CD Salesforce Apex prorjects.

Result

How to Use

docker pull atsnngs/force-com

cat > envfile.txt <<ENVFILE
SF_USERNAME=you@example.com
SF_PASSWORD=PASSWORD+SECURITY_TOKEN
SF_SERVER=https://xxx-api.salesforce.com
ENVFILE

docker run \
  -v $(pwd)/wsdl:/wsdl \
  -v $(pwd)/src/classes:/src/classes \
  -v $(pwd)/src/triggers:/src/triggers \
  --rm \
  --env-file envfile.txt \
  atsnngs/force-com

Directory Structure

.
├── src # Force IDE project sources
│   ├── classes
│   │   └── MyClass.cls
│   └── triggers
│       └── MyTrigger.trigger
│
└── wsdl # Download WSDL files, see refs
    ├── apex.wsdl
    └── enterprise.wsdl

Refs