Install Gitea Using Docker Compose

This article is for those looking for a detailed and straightforward guide on installing Gitea using Docker Compose.
Gitea is a forge software package for hosting software development version control using Git as well as other collaborative features like bug tracking, code review, continuous integration, kanban boards, tickets, and wikis. It supports self-hosting but also provides a free public first-party instance.
๐พ You can find the repository used in this guide on GitHub.
NOTEWeโll use Traefik as our reverse proxy. Itโll handle obtaining cryptographic certificates from Letโs Encrypt for your domain names and route requests to the corresponding services based on those domains.
CAUTIONTo obtain cryptographic certificates, you will need A-type records in the external DNS zone, which point to the IP address of your server where Traefik is installed. If you have created these records recently, you should wait before starting the installation of the services. Full replication of these records between DNS servers can take from a few minutes to 48 hours or even longer in rare cases.
IMPORTANTDocker Engine and Docker Compose must be installed on the server.
For a step-by-step guide on installing Docker Engine on Ubuntu Server, see Install Docker Engine and Docker Compose on Ubuntu Server
IMPORTANTOpenSSH must be installed on the server, and port 22 must be open in order to be able to connect to the server using the SSH protocol.
To install OpenSSH on the server you can use the command:
sudo apt install openssh-server
NOTETo connect to the server from a Windows system, you can use tools like PuTTY or MobaXterm.
NOTEThis guide walks you through connecting to a server with the iTerm2 terminal emulator on macOS.
CAUTIONYou will need to open the following TCP ports for access to the services:
- TCP port 80 - to obtain a free cryptographic certificate through the Letโs Encrypt certification center.
- TCP port 443 - to access the Gitea web interface.
- TCP port 2222 - for secure SSH Git operations, user SSH key management, encrypted data transfer, and server administration tasks.
We connect to the server on which Gitea is planned to be installed.
Now it is necessary to create networks for your services.
We create a network for Traefik using the command:
docker network create traefik-network
We create a network for Gitea using the command:
docker network create gitea-network
Next, you need to clone the repository that contains the configuration files, which include all the necessary conditions for Gitea to work.
You can clone the repository using the command:
git clone https://github.com/heyvaldemar/gitea-traefik-letsencrypt-docker-compose.git
Navigate to the directory with the repository using the command:
cd gitea-traefik-letsencrypt-docker-compose
Next, you need to change the variables in the .env
file according to your requirements.
IMPORTANTThe
.env
file should be in the same directory asgitea-traefik-letsencrypt-docker-compose.yml
.
Now letโs start Gitea with the command:
docker compose -f gitea-traefik-letsencrypt-docker-compose.yml -p gitea up -d
To access the Gitea management panel, go to https://gitea.heyvaldemar.net
from your workstation, where gitea.heyvaldemar.net
is the domain name of my service. Accordingly, you need to specify your domain name that points to the IP address of your server with the installed Traefik service, which will redirect the request to Gitea.
NOTEYou need to specify the domain name of the service, previously defined in the
.env
file.
Click on the โSing Inโ button.
Enter the username and password previously set in the .env
file, and click the โSign Inโ button.
Welcome to the Gitea control panel.
To access the Traefik control panel, go to https://traefik.gitea.heyvaldemar.net
from your workstation, where traefik.gitea.heyvaldemar.net
is the domain name of my service. Accordingly, you need to specify your domain name that points to the IP address of your server with the installed Traefik.
NOTEYou need to specify the domain name of the service, previously defined in the
.env
file.
Enter the username and password previously set in the .env
file, and click the โOKโ button.
Welcome to the Traefik control panel.
Patreon Exclusives
๐ Join my Patreon and dive deep into the world of Docker and DevOps with exclusive content tailored for IT enthusiasts and professionals. As your experienced guide, I offer a range of membership tiers designed to suit everyone from newbies to IT experts.
Tools I Personally Trust
If youโre building things, breaking things, and trying to keep your digital life a little saner (like every good DevOps engineer), these are two tools that I trust and use daily:
๐ธ Proton VPN - My shield on the internet. It keeps your Wi-Fi secure, hides your IP, and blocks those creepy trackers. Even if Iโm hacking away on free cafรฉ Wi-Fi, I know Iโm safe.
๐ Proton Pass - My password vault. Proper on-device encryption, 2FA codes, logins, secrets - all mine and only mine. No compromises.
These are partner links - you wonโt pay a cent more, but youโll be supporting DevOps Compass. Thanks a ton - it helps me keep this compass pointing the right way ๐
Gear & Books I Trust
๐ Essential DevOps books
๐ฅ๏ธ Studio streaming & recording kit
๐ก Streaming starter kit
Social Channels
๐ฌ YouTube
๐ฆ X (Twitter)
๐จ Instagram
๐ Mastodon
๐งต Threads
๐ธ Facebook
๐ฆ Bluesky
๐ฅ TikTok
๐ป LinkedIn
๐ฃ daily.dev Squad
โ๏ธ Telegram
๐ GitHub
Community of IT Experts
๐พ Discord
Refill My Coffee Supplies
๐ PayPal
๐ Patreon
๐ฅค BuyMeaCoffee
๐ช Ko-fi
๐ GitHub
โก Telegram Boost
๐ Bitcoin (BTC): bc1q2fq0k2lvdythdrj4ep20metjwnjuf7wccpckxc
๐น Ethereum (ETH): 0x76C936F9366Fad39769CA5285b0Af1d975adacB8
๐ช Binance Coin (BNB): bnb1xnn6gg63lr2dgufngfr0lkq39kz8qltjt2v2g6
๐ Litecoin (LTC): LMGrhx8Jsx73h1pWY9FE8GB46nBytjvz8g
Is this content AI-generated?
No. Every article on this blog is written by me personally, drawing on decades of hands-on IT experience and a genuine passion for technology.
I use AI tools exclusively to help polish grammar and ensure my technical guidance is as clear as possible. However, the core ideas, strategic insights, and step-by-step solutions are entirely my own, born from real-world work.
Because of this human-and-AI partnership, some detection tools might flag this content. You can be confident, though, that the expertise is authentic. My goal is to share road-tested knowledge you can trust.