26 lines
532 B
Plaintext
26 lines
532 B
Plaintext
[Unit]
|
|
Description=Gitea database container
|
|
|
|
[Container]
|
|
AutoUpdate=registry
|
|
ContainerName=gitea-database
|
|
Environment=POSTGRES_USER=gitea
|
|
Environment=POSTGRES_DB=gitea
|
|
Environment=TZ=Europe/Zurich
|
|
HealthCmd=pg_isready -U gitea
|
|
HealthInterval=30s
|
|
HealthTimeout=10s
|
|
HealthRetries=5
|
|
Image=docker.io/postgres:18
|
|
Pod=gitea.pod
|
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
|
StartWithPod=true
|
|
Timezone=Europe/Zurich
|
|
Volume=gitea-database.volume:/var/lib/postgresql
|
|
|
|
[Service]
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=default.target
|