# Hosting ## Installation We currently support two installation methods for DSFX: Docker and manual installation. ### Docker To run DSFX using Docker, you first need to log into the gitea registry. You can do this with the following command. ```bash export GITEA_PAT="hex string of pat created in gitea console" echo $GITEA_PAT | docker login koti.casa -u --password-stdin ``` Then, you can pull the DSFX image from the registry and run it. ```bash docker run -d --name dsfx -p 8080:8080numenorlabs/dsfx ```