mirror of
https://github.com/meienberger/runtipi.git
synced 2024-11-10 11:41:48 +03:00
Merge pull request #141 from meienberger/app/portainer
add: Portainer app
This commit is contained in:
commit
2fc7384419
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
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": []
|
||||
}
|
14
apps/portainer/docker-compose.yml
Normal file
14
apps/portainer/docker-compose.yml
Normal 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
|
6
apps/portainer/metadata/description.md
Normal file
6
apps/portainer/metadata/description.md
Normal 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.
|
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…
Reference in New Issue
Block a user