-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Description on Docker Hub is boring #3365
Comments
@kolaente I think you are right. Please give the text what you think it should be. And any others could also give more idea. After this issue end, we can change that description. |
quickly wrote a draft: https://gist.github.com/thehowl/cd950ae33a8519439ac58a644037bb1f |
Dockerfile (with description): Use this dockerfile to get up and running quickly. You should change mysql user- and root password. When installing, you can reference the database container as host This configuration will publicly expose ports version: '2'
services:
web:
image: gitea/gitea:1.3.2
volumes:
- ./data:/data
ports:
- "3000:3000"
- "22:22"
depends_on:
- db
restart: always
db:
image: mariadb:10
restart: always
environment:
- MYSQL_ROOT_PASSWORD=changeme
- MYSQL_DATABASE=gitea
- MYSQL_USER=gitea
- MYSQL_PASSWORD=changeme
volumes:
- ./db/:/var/lib/mysql @off-topic: is it currently possible to configure gitea with environment variables? |
@kolaente Shouldn't the image be |
If I am not mistaken, latest is on master that is not stable. We could provide a "stable" tag or maybe switch latest to last "stable" version. It reflect the branch on git master -> latest is unstable and branches for each version that receive backport when needed. Gitea at the start of the fork, receive a lot of change and was to be consider a work in progress as we break things maybe now we could start to provide stable instance. |
I think master is generally stable, but not guaranteed. So I wont nessecary use |
So, can we update it then to the description provided by @thehowl ? |
@kolaente Since nobody have further idea, I think yes. |
Ping (again)
|
@kolaente let me try. |
Great, thanks! |
IMHO, the description on https://hub.docker.com/r/gitea/gitea/ is really boring. It should have at least a link to the website and a short description about what Gitea is. Also a link to docs, maybe even an example docker compose file to quickly set it up (I have one which I'd be happy to share) would be great.
What do you think?
The text was updated successfully, but these errors were encountered: