mirror of
https://git.numenor-labs.us/dsfx.git
synced 2025-04-29 16:20:34 +00:00
23 lines
532 B
Markdown
23 lines
532 B
Markdown
# 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 <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
|
|
```
|