Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .templates/gitea/gitea.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# initially empty
14 changes: 14 additions & 0 deletions .templates/gitea/service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
gitea:
container_name: gitea
image: kapdap/gitea-rpi
restart: unless-stopped
user: "0"
ports:
- "7920:3000/tcp"
- "2222:22/tcp"
env_file:
- ./services/gitea/gitea.env
volumes:
- ./volumes/gitea/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
32 changes: 28 additions & 4 deletions menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,36 @@ declare -A cont_array=(
[diyhue]="diyHue"
[homebridge]="Homebridge"
[python]="Python 3"

[gitea]="Gitea"
)
declare -a armhf_keys=("portainer" "nodered" "influxdb" "grafana" "mosquitto" "telegraf" "mariadb" "postgres"
"adminer" "openhab" "zigbee2mqtt" "pihole" "plex" "tasmoadmin" "rtl_433" "espruinohub"
"motioneye" "webthings_gateway" "blynk_server" "nextcloud" "diyhue" "homebridge" "python")

declare -a armhf_keys=(
"portainer"
"nodered"
"influxdb"
"grafana"
"mosquitto"
"telegraf"
"mariadb"
"postgres"
"adminer"
"openhab"
"zigbee2mqtt"
"pihole"
"plex"
"tasmoadmin"
"rtl_433"
"espruinohub"
"motioneye"
"webthings_gateway"
"blynk_server"
"nextcloud"
"diyhue"
"homebridge"
"python"
"gitea"
# add yours here
)
sys_arch=$(uname -m)

#timezones
Expand Down