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

Description on Docker Hub is boring #3365

Closed
kolaente opened this issue Jan 14, 2018 · 13 comments
Closed

Description on Docker Hub is boring #3365

kolaente opened this issue Jan 14, 2018 · 13 comments
Labels
type/proposal The new feature has not been accepted yet but needs to be discussed first.

Comments

@kolaente
Copy link
Member

kolaente commented Jan 14, 2018

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?

@lunny
Copy link
Member

lunny commented Jan 14, 2018

@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.

@lunny lunny added the type/proposal The new feature has not been accepted yet but needs to be discussed first. label Jan 14, 2018
@thehowl
Copy link
Contributor

thehowl commented Jan 14, 2018

@kolaente
Copy link
Member Author

kolaente commented Jan 14, 2018

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 db.

This configuration will publicly expose ports 3000 and 22.

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?

@sapk
Copy link
Member

sapk commented Jan 15, 2018

@kolaente yes done in #2201 and #2791

@xy2z
Copy link

xy2z commented Feb 20, 2018

@kolaente Shouldn't the image be gitea/gitea:latest?

@sapk
Copy link
Member

sapk commented Feb 20, 2018

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.

@kolaente
Copy link
Member Author

I think master is generally stable, but not guaranteed. So I wont nessecary use master (aka latest) in production.

@kolaente
Copy link
Member Author

kolaente commented Mar 3, 2018

So, can we update it then to the description provided by @thehowl ?
@maintainers

@lunny
Copy link
Member

lunny commented Mar 3, 2018

@kolaente Since nobody have further idea, I think yes.

@kolaente
Copy link
Member Author

Ping (again)

So, can we update it then to the description provided by @thehowl ? @maintainers

@lunny
Copy link
Member

lunny commented Mar 23, 2018

@kolaente let me try.

@lunny
Copy link
Member

lunny commented Mar 23, 2018

@kolaente @thehowl done.

@kolaente
Copy link
Member Author

Great, thanks!

@go-gitea go-gitea locked and limited conversation to collaborators Nov 24, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
type/proposal The new feature has not been accepted yet but needs to be discussed first.
Projects
None yet
Development

No branches or pull requests

5 participants