You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Yik Teng Hie a8896fd2f3 add gitea-mariadb docker-compose 3 years ago
..
README.md add gitea-mariadb docker-compose 3 years ago
docker-compose.yml add gitea-mariadb docker-compose 3 years ago
docker-gitea-mysql.PNG add gitea-mariadb docker-compose 3 years ago

README.md

Setup gitea with Postgres DB server on Docker

  1. Start docker
$ docker-composer up -d
  1. Stop server
$ docker-compose down

Setup mySQL Database. Enter 'Y' for all question

  • Goto mariadb shell
$ docker exec -it gitea-db-1 bash
  • Inside the container enter the following to setup the initial database
$ mysql_secure_installation
$ mysql -u root
  • Allow from localhost ONLY
CREATE DATABASE gitea;

GRANT ALL PRIVILEGES ON gitea.* TO 'gitea'@'localhost' IDENTIFIED BY 'ENTERPASSWORD';

FLUSH PRIVILEGES;

exit
  • Allow from subnet ONLY (172.24..)
CREATE DATABASE gitea;

GRANT ALL PRIVILEGES ON gitea.* TO 'gitea'@'172.24.%' IDENTIFIED BY 'ENTERPASSWORD';

FLUSH PRIVILEGES;

exit