Added the docker entry to the software.jsx

This commit is contained in:
Mathias Wagner 2023-06-02 00:41:38 +02:00
parent 1d9c463110
commit 78675d385b
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,4 +1,5 @@
import MySpeedImage from "./images/myspeed.webp";
import DockerImage from "./images/docker.webp";
import {faBox, faFolder} from "@fortawesome/free-solid-svg-icons";
export default [
@ -10,5 +11,13 @@ export default [
{type: "select", id: "environment", text: "Umgebung", icon: faBox, options: ["Stabil", "Entwicklung"],
value: "Stabil"}
]
},
{
name: "Docker",
icon: DockerImage,
configuration: [
{type: "select", id: "environment", text: "Umgebung", icon: faBox, options: ["Stabil", "Test"],
value: "Stabil"},
]
}
];