docker run -e WEBAPP_BASEURL=http[s]://[HOST] -e WEBAPP_USERNAME=[USERNAME] -e WEBAPP_PASSWORD=[PASSWORD] raminyavari/cliqmind-scheduler
- Create Docker image, build
Dockerfile
- Build the image,
docker build -t scheduler .
- Define services, port bindings, in
docker-compose.yml
- Build and run w/ compose,
docker-compose up
(add-d
for it to run 'detatched', in background)
docker-compose up
(first time run will perform build)
- you can force a fresh build with --build
- you can background (run without holding up your CLI) by using --detach