Sign inSign up

graylan01/etherealized_scanner

By graylan01

Updated about 2 years ago

Ethereal Scanner

Image
Security
Machine learning & AI
Monitoring & observability
0

330

graylan01/etherealized_scanner repository overview

Etherealized Scanner Docker Image

This Docker image contains the Etherealized Scanner application, designed to perform advanced scanning tasks using quantum and AI technologies.

Code Repo

https://gitlab.com/graylan01/etherealized_scanner

Prerequisites

Before running the Docker image, ensure you have the following:

How to Run

To run the Etherealized Scanner Docker image, follow these steps:

  1. Pull the Docker Image:

    docker pull graylan01/etherealized_scanner:latest
    

    This command fetches the latest version of the Etherealized Scanner Docker image from Docker Hub.

  2. Run the Docker Container:

    docker run --rm -it \
        --net=host \
        --env="DISPLAY" \
        --volume="$HOME/.Xauthority:/root/.Xauthority:rw" \
        --volume="$HOME/humoid_data:/data" \
        graylan01/etherealized_scanner:latest
    
    • --rm: Automatically removes the container when it exits.
    • -it: Starts an interactive session (useful for GUI applications).
    • --net=host: Shares host networking with the container.
    • --env="DISPLAY": Passes the DISPLAY environment variable to enable GUI applications to connect to the host X server.
    • --volume="$HOME/.Xauthority:/root/.Xauthority:rw": Mounts the X authority file to enable X authentication.
    • --volume="$HOME/humoid_data:/data": Mounts a local directory $HOME/humoid_data to /data inside the container for data persistence.
  3. Interact with the Etherealized Scanner:

    Once the container starts, interact with the Etherealized Scanner application as per its usage instructions.

Additional Notes

  • Ensure your Docker environment has appropriate permissions and configurations to support GUI applications (DISPLAY variable and X11 forwarding).

  • Adjust volume mounts (--volume options) as needed to accommodate your specific data storage requirements ($HOME/humoid_data in this example).

Tag summary

Content type

Image

Digest

sha256:37f7f2b6e

Size

356.3 MB

Last updated

about 2 years ago

docker pull graylan01/etherealized_scanner