Merge pull request #141 from meienberger/app/portainer

add: Portainer app
This commit is contained in:
Nicolas Meienberger 2022-07-26 20:30:32 +02:00 committed by GitHub
commit 2fc7384419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 35 additions and 1 deletions

View File

@ -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

View File

@ -43,6 +43,7 @@ Check our demo instance : **95.179.210.152** / username: **user@runtipi.com** /
- [Photoprism](https://github.com/photoprism/photoprism) - AI-Powered Photos App for the Decentralized Web. We are on a mission to protect your freedom and privacy.
- [Pihole](https://github.com/pi-hole/pi-hole) - A black hole for Internet advertisements
- [Plex](https://github.com/plexinc/pms-docker) - Stream Movies & TV Shows
- [Portainer](https://github.com/portainer/portainer) - Making Docker and Kubernetes management easy.
- [Prowlarr](https://github.com/Prowlarr/Prowlarr/) - A torrent/usenet indexer manager/proxy
- [Radarr](https://github.com/Radarr/Radarr) - Movie collection manager for Usenet and BitTorrent users
- [Readarr](https://github.com/Readarr/Readarr) - Book Manager and Automation (Sonarr for Ebooks)

View 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": []
}

View File

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

View File

@ -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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB