some_linux_user

joined 1 year ago
[–] [email protected] 99 points 10 months ago (5 children)

They were put there by a man!

[–] [email protected] 6 points 1 year ago

Yes, here is the link to their Liftoff's GitHub https://github.com/liftoff-app/liftoff

License is listed as GPL-2.0

[–] [email protected] 7 points 1 year ago

If you prefer to use docker compose you can write your own docker-compose.yml file like I did.

version: "3"

services:
  wefwef:
    container_name: wefwef
    image: ghcr.io/aeharding/wefwef:latest
    ports:
      - 5314:5314
    restart: unless-stopped # remove this is you don't want wefwef to run always

You should be able to access wefwef with http://localhost:5314 if you're running on your local machine, or if you have it running on something else access it with http://<ip address>:5314.