-- Create a dedicated database and user for Forgejo. -- This script runs once when the Postgres container is first initialised. -- If the container already has data it is skipped automatically. CREATE USER forgejo WITH PASSWORD 'CHANGE_ME'; CREATE DATABASE forgejo OWNER forgejo;