A simple URL shortener made in Go
docker run \
-d \
--name gull \
-v $DATA_DIR:/data/ \
-p 8081:8081 \
ghcr.io/aeolyus/gull:latest
This will preserve any persistent data under $DATA_DIR.
git clone https://github.com/aeolyus/gull.git
cd ./gull
make run
This will create a directory ./gull/data
where persistent data will be stored.
Inspired by mnml!