Skip to content

Tool that automates website logins to prevent account deletion due to inactivity.

License

Notifications You must be signed in to change notification settings

JonBunator/Enterr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Enterr

Some websites delete your account after a period of inactivity. This tool helps manage your logins by automatically logging into your accounts, ensuring they remain active.

Warning

This tool is still at an early stage of development. Expect breaking changes.

Caution

Disclaimer: Use of this tool may violate the Terms of Service (TOS) of the websites it interacts with. Users are solely responsible for any consequences. The developers are not liable for misuse or damages.

enterr logo

Docker compose

Create a docker-compose.yml and add the following. You can change the port if you want.

services:
  enterr:
    container_name: enterr
    image: ghcr.io/jonbunator/enterr:latest
    volumes:
      - ./config:/config
    ports:
      - "7653:7653"
    restart: unless-stopped

Then start the container:

docker compose up -d