## Docker Compose (recommended)

Go to the folder where you want to store the data, e.g. /home/versun/rsstranslator/

Download the docker-compose.yml file

wget "https://raw.githubusercontent.com/rss-translator/RSS-Translator/main/deploy/docker-compose.yml"

Run docker-compose -f docker-compose.yml up -d

Installation is complete, visit http://127.0.0.1:8000

default account: admin, password: rsstranslator

Please change your password immediately after logging in


Docker#

docker run -d \
  -v data:/home/rsstranslator/data \
  -p 8000:8000 --restart always \
  rsstranslator/rsstranslator \
  bash -c "python manage.py init_server && python manage.py run_huey & uvicorn config.asgi:application --host  0.0.0.0"

Installation is complete, visit http://127.0.0.1:8000

default account: admin, password: rsstranslator

Please change your password immediately after logging in