Nicolas Meienberger пре 3 година
родитељ
комит
d8c5b29610

+ 1 - 1
Dockerfile.dev

@@ -3,7 +3,7 @@ FROM alpine:3.16.0 as app
 WORKDIR /
 
 # Install docker
-RUN apk --no-cache add docker-compose nodejs npm bash
+RUN apk --no-cache add docker-compose nodejs npm bash g++ make
 
 RUN npm install node-gyp -g
 

+ 13 - 0
apps/portainer/config.json

@@ -0,0 +1,13 @@
+{
+  "name": "Portainer",
+  "port": 9443,
+  "available": true,
+  "id": "portainer",
+  "categories": ["utilities"],
+  "description": "",
+  "short_desc": "Making Docker and Kubernetes management easy. ",
+  "author": "portainer.io",
+  "source": "https://github.com/portainer/portainer",
+  "image": "/logos/apps/portainer.jpg",
+  "form_fields": []
+}

+ 16 - 0
apps/portainer/docker-compose.yml

@@ -0,0 +1,16 @@
+version: "3.9"
+
+services:
+  portainer:
+    image: portainer/portainer-ce:latest
+    container_name: portainer
+    restart: unless-stopped
+    ports:
+      - "${APP_PORT}:9443"
+    environment:
+      PHOTOPRISM_ADMIN_PASSWORD: ${PHOTOPRISM_ADMIN_PASSWORD}
+    volumes:
+      - /var/run/docker.sock:/var/run/docker.sock
+      - "${APP_DATA_DIR}/data:/data"
+    networks:
+      - tipi_main_network

+ 6 - 0
apps/portainer/metadata/description.md

@@ -0,0 +1,6 @@
+
+![Screenshot](https://github.com/portainer/portainer/blob/develop/app/assets/images/portainer-github-banner.png?raw=true)
+
+**Portainer Community Edition** is a lightweight service delivery platform for containerized applications that can be used to manage Docker, Swarm, Kubernetes and ACI environments. It is designed to be as simple to deploy as it is to use. The application allows you to manage all your orchestrator resources (containers, images, volumes, networks and more) through a ‘smart’ GUI and/or an extensive API.
+
+Portainer consists of a single container that can run on any cluster. It can be deployed as a Linux container or a Windows native container.

BIN
packages/dashboard/public/logos/apps/portainer.jpg