Skip to content

aeolyus/gull

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

gull

A simple URL shortener made in Go screenshot

Usage

Docker

Optionally, build the container. Otherwise, the public one will be pulled down.

make image

Run the container.

docker run \
    -d \
    --name gull \
    -v /gull-data/:/data/ \
    -p 8081:8081 \
    ghcr.io/aeolyus/gull:latest

This will preserve any persistent data under /gull-data/. Change this as needed.

From Source

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.

Acknowledgements

Inspired by mnml!