rancher-katalog/templates/gitea/README.md

20 lines
401 B
Markdown
Raw Normal View History

2018-06-23 12:23:05 +00:00
# Gitea
Git Server with Web GUI
## Configuration
Now the database is up and running, we need to configure it. Make sure you remember the password for when Gitea starts.
$ docker exec -it gitea-db psql -U postgres
psql (9.6.1)
Type "help" for help.
postgres=# CREATE USER gitea WITH PASSWORD '<PASSWORD>';
CREATE ROLE
postgres=# CREATE DATABASE gitea OWNER gitea;
CREATE DATABASE
postgres=# \q
$