Sign inSign up

milosz08/turing-machine-simulator-app

By milosz08

‱Updated 10 months ago

Turing machine simulator React app.

Image
0

540

milosz08/turing-machine-simulator-app repository overview

⁠Turing machine simulator

[GitHub repository⁠] | [About project⁠]

An advanced, single-tape, deterministic Turing Machine simulator written using the ReactJS library. Available in light and dark modes, depending on user preference. This machine is a great foundation for understanding how computer processing of algorithms works, found frequently in Computer Science majors at technical colleges.

⁠Build image

docker build -t milosz08/turing-machine-simulator-app .

⁠Create container

  • Using command:
docker run -d \
  --name turing-machine-simulator-app \
  -p 8080:8080 \
  milosz08/turing-machine-simulator-app:latest
  • Using docker-compose.yml file:
services:
  turing-machine-simulator-app:
    container_name: turing-machine-simulator-app
    image: milosz08/turing-machine-simulator-app:latest
    ports:
      - '8080:8080'
    networks:
      - turing-machine-simulator-network

  # other containers...

networks:
  turing-machine-simulator-network:
    driver: bridge

⁠Author

Created by MiƂosz Gilga. If you have any questions about this application, send message: [email protected]⁠.

⁠License

This application is on Apache 2.0 License.

Tag summary

Content type

Image

Digest

sha256:800d039b5


Size

19.4 MB

Last updated

10 months ago

docker pull milosz08/turing-machine-simulator-app