/create3-docker

Dockerfile for Running Create3 applications

Primary LanguageDockerfileBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

create3-docker

Dockerfile for Running Create3 applications

Each Docker image should be placed, together with all the additional files it requires, in a directory named as the image itself.

Build a Docker image locally

./build-image.sh IMAGE_DIR

Deploying image to Docker Hub

  • Login to Docker Hub
  • Build image locally
  • Tag the image
  • Push tag

Full example:

docker login
./build-image.sh create3-galactic
docker tag create3-galactic irobotedu/create3-galactic:0.0.1
docker push irobotedu/create3-galactic:0.0.1
docker tag create3-galactic irobotedu/create3-galactic:latest
docker push irobotedu/create3-galactic:latest