2025-03-21 22:02:51 -04:00
|
|
|
# Hosting
|
|
|
|
|
2025-03-22 11:07:13 -04:00
|
|
|
## 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 <your-username> --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
|
|
|
|
```
|