timonier/gitea
Git with a cup of tea, painless self-hosted git service
845
Git with a cup of tea, painless self-hosted git service
⚠️ This project is no longer maintained. ⚠️
docker run --interactive --publish 3000:3000 --rm --tty timonier/gitea
Note: By default gitea
opens port 3000
.
It is possible to change UID
and / or GID
of user git
(user used to run gitea
) with environment variables GITEA_UID
and GITEA_GID
:
docker run --env GITEA_GID=1005 --env GITEA_UID=1005 --interactive --publish 3000:3000 --rm --tty timonier/gitea
It is possible to run a container in read-only
mode if you mount the following folders:
/etc
if you want to change UID
or GID
of user git
./run
and /var/lib/gitea
.Note: /run
can be mount as tmpfs
. In that case, /run
must have flag exec
.
# If you do not want to change "UID" or "GID" of user "git"
docker run --interactive --publish 3000:3000 --read-only --rm --tmpfs /run:exec --tty --volume $PWD/data:/var/lib/gitea timonier/gitea
# If you want to change "UID" or "GID" of user "git"
docker run --env GITEA_GID=1005 --env GITEA_UID=1005 --interactive --publish 3000:3000 --read-only --rm --tmpfs /run:exec --tty --volume /etc --volume $PWD/data:/var/lib/gitea timonier/gitea
docker pull timonier/gitea