FreeCAD Docker CLI mode: Difference between revisions

From FreeCAD Documentation
(Create page of FreeCAD CLI docker)
 
Line 37: Line 37:
docker pull amrit3701/freecad-cli:latest
docker pull amrit3701/freecad-cli:latest
}}<translate>
}}<translate>

# When you successfully pulled docker image, now you can run image.</translate>{{Code|lang=bash|code=
# When you successfully pulled docker image, now you can run image.</translate>{{Code|lang=bash|code=
docker run -it amrit3701/freecad-cli:lastest bash
docker run -it amrit3701/freecad-cli:lastest bash

Revision as of 09:07, 10 May 2020

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

{{Compile on MacOS |Compiling (Speeding up) }}

Overview

Docker image of FreeCAD compiled without GUI. This docker image is especially for developers who only want to use FreeCAD in the command-line interface (CLI) and want to FreeCAD as a CAD engine for their web applications.

Benefits

All of FreeCAD's dependencies are already installed, compatible with each other, and configured appropriately, allowing you to get started developing very quickly.

  • Easy to use and lightweight.
  • It gives better performance in terms of speed.
  • No need to add FreeCAD paths to import it into Python.

Docker Repository

Prerequisites

  • 3 GB of free storage
  • Docker

Installation

  1. Pull the Docker image.
    docker pull amrit3701/freecad-cli:latest
    
  2. When you successfully pulled docker image, now you can run image.
    docker run -it amrit3701/freecad-cli:lastest bash
    


Additional information

Extend docker image

You can also extend this docker images to add additional dependencies for your project. For eg

# Dockerfile

FROM amrit3701/freecad-cli:lastest bash

# Add additional dependencies

# pip3.7 install <some_package>

Import FreeCAD in Python

After running docker image, just run Python.

$ docker run -it amrit3701/freecad-cli:lastest bash
root@f0ec904cf9b9:/# python3.7
Python 3.7.7 (default, Mar 10 2020, 17:25:08)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import FreeCAD
>>> import Part
>>> import Draft
>>> import Arch

Launch FreeCADCmd

To launch FreeCAD inside docker image, just run FreeCADCmd command.

Discussion

FreeCAD forum thread: https://forum.freecadweb.org/viewtopic.php?f=8&t=45877