Components
Adding container component
A component type that allows to define a container image-based configuration of a container in a workspace. A devfile can contain one or more component(s) of the container type. The container type of component brings in custom tools into the workspace. The component is identified by its image.
Prerequisites
Procedure
Define a component using the type
container.A container component
devfile.yamlcomponents: - name: maven container: image: eclipse/maven-jdk8:latest volumeMounts: - name: mavenrepo path: /root/.m2 env: - name: ENV_VAR value: value endpoints: - name: maven-server targetPort: 3101 configuration: protocol: tcp scheme: http secure: 'true' public: 'true' discoverable: 'false' memoryLimit: 1536M command: ['tail'] args: ['-f', '/dev/null']A minimal container component
devfile.yamlschemaVersion: 2.0.0 metadata: name: MyDevfile components: - name: go container: image: golang memoryLimit: 512Mi command: ['sleep', 'infinity']It specifies the type of the component,
containerand theimageattribute names the image to be used for the component using the usual Docker naming conventions, that is, the aboveimageattribute is equal todocker.io/library/golang:latest.Mounting project sources
For the
containercomponent to have access to the project sources, you must set themountSourcesattribute totrue.devfile.yamlschemaVersion: 2.0.0 metadata: name: MyDevfile components: - name: go container: image: golang memoryLimit: 512Mi mountSources: true command: ['sleep', 'infinity']The sources is mounted on a location stored in the
PROJECTS_ROOTenvironment variable that is made available in the running container of the image. This location defaults to/projects. IfsourceMappingis defined in the container, it overrides the PROJECT_ROOT value if present and mounts the source to the path defined bysourceMapping.Container Entrypoint
The
commandattribute of thecontaineralong with other arguments, is used to modify theentrypointcommand of the container created from the image. In {prod} the container is needed to run indefinitely so that you can connect to it and execute arbitrary commands in it at any time. Because the availability of thesleepcommand and the support for theinfinityargument for it is different and depends on the base image used in the particular images, {prod-short} cannot insert this behavior automatically on its own. However, you can take advantage of this feature to, for example, start up necessary servers with modified configurations, etc.