Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gitea image, update template and update readme.md #67

Merged
merged 1 commit into from
Dec 23, 2023
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
Binary file added Images/gitea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ All templates are already configured to bind mount to various places on your dri

- Adguard
- Airsonic
- ArchiSteamFarm
- Authelia
- Bazarr
- Beets
Expand All @@ -62,6 +63,7 @@ All templates are already configured to bind mount to various places on your dri
- Filebrowser
- Freshrss
- Gazee
- Gitea
- Guacamole
- Grocy
- Htpcmanager
Expand Down
39 changes: 39 additions & 0 deletions Template/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -1011,6 +1011,45 @@
}
]
},
{
"categories": ["Web","Tools"],
"description": "Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD.",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
ShiroBlank marked this conversation as resolved.
Show resolved Hide resolved
"label": "PGID",
"name": "PGID"
}
],
"image": "gitea/gitea:latest",
"logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/gitea.png",
"name": "gitea",
"note": "Use SQLite3 for the database unless you have an external one setup.",
"ports": ["3000:3000/tcp", "222:22/tcp"],
"platform": "linux",
"restart_policy": "unless-stopped",
"title": "Gitea",
"type": 1,
"volumes": [
{
"bind": "/portainer/Files/AppData/Config/Gitea",
"container": "/data"
},
{
"bind": " /etc/timezone",
"container": "/etc/timezone:ro"
},
{
"bind": "/etc/localtime",
"container": "/etc/localtime:ro"
}
]
},
{
"categories": ["Other", "Tools"],
"description": "A clientless remote desktop gateway.",
Expand Down
Loading