1.9 KiB
Running with Docker (pre-built backend and rate limiter) (linux/arm64 only)
Because SvelteKit is a pain in the ass to build in a container, and processes secrets at build time,
there is no pre-built frontend image available.
If you don't want to build images on your server, I recommend running the frontend outside of Docker.
This is preconfigured in docker-compose.prebuilt.yml
: the backend, database, and rate limiter will run in Docker,
while the frontend is run as a normal, non-containerized service.
- Copy
docker/config.example.ini
todocker/config.ini
, and change the settings to your liking. - Copy
docker/proxy-config.example.json
todocker/proxy-config.json
, and do the same. - Run with
docker compose up -f docker-compose.prebuilt.yml
The backend will listen on port 5001 and metrics will be available on port 5002.
The rate limiter (which is what should be exposed to the outside) will listen on port 5003.
You can use docker/Caddyfile
as an example for your reverse proxy. If you use nginx, good luck.
Running with Docker (local builds)
In order to run everything in Docker, you'll have to build every container yourself. The advantage of this is that it's an all-in-one solution, where you only have to point your reverse proxy at a single container. The disadvantage is that you'll likely have to build the images on the server you'll be running them on.
- Configure the backend and rate limiter as in the section above.
- Copy
docker/frontend.example.env
todocker/frontend.env
, and configure it. - Build with
docker compose build -f docker-compose.local.yml
- Run with
docker compose up -f docker-compose.local.yml
The Caddy server will listen on localhost:5004
for the frontend and API,
and on localhost:5005
for the profile URL shortener.
The backend server listens on localhost:5006
for unproxied API access,
and localhost:5007
for metrics.