add: Portainer app
This commit is contained in:
parent
d4a2b15c48
commit
d8c5b29610
5 changed files with 36 additions and 1 deletions
|
@ -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
apps/portainer/config.json
Normal file
13
apps/portainer/config.json
Normal file
|
@ -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
apps/portainer/docker-compose.yml
Normal file
16
apps/portainer/docker-compose.yml
Normal file
|
@ -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
apps/portainer/metadata/description.md
Normal file
6
apps/portainer/metadata/description.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||

|
||||
|
||||
**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
Normal file
BIN
packages/dashboard/public/logos/apps/portainer.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
Loading…
Add table
Reference in a new issue