- Migrate Gitea installation to use Podman containers. - This simplifies the installation process and improves - portability. Removes reliance on direct binary - downloads and manual installation steps. The - Gitea instance is now managed as a container. - Updates configuration to reflect container-based - deployment. Updates version to 'latest' to - leverage Podman's image management capabilities. Co-authored-by: mariobassem12 <mariobassem12@gmail.com>
14 lines
368 B
GLSL
Executable File
14 lines
368 B
GLSL
Executable File
#!/usr/bin/env -S v -n -w -gc none -no-retry-compilation -cc tcc -d use_openssl -enable-globals run
|
|
|
|
import freeflowuniverse.herolib.installers.infra.gitea
|
|
|
|
mut g := gitea.new(
|
|
passwd: '123'
|
|
postgresql_path: '/tmp/db'
|
|
postgresql_reset: true
|
|
domain: 'git.meet.tf'
|
|
appname: 'ourworld'
|
|
)!
|
|
// postgresql will be same passwd
|
|
g.restart()!
|