Self-hosting
Quick start
Run the Airday server on your own infrastructure with a single
Docker command:
docker run -d \
-p 8000:8000 \
-v /srv/airday:/data \
ghcr.io/airdaydev/airday-server:v0.0.1-alpha.2
The server will be available at
http://localhost:8000.
What this does
- -d — runs the container in the background
- -p 8000:8000 — exposes the server on port 8000
- -v /srv/airday:/data — persists data to the host
filesystem
Requirements
- Docker installed on your server
- Port 8000 available (or remap to another port)