Turing machine simulator React app.
540
[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.
docker build -t milosz08/turing-machine-simulator-app .
docker run -d \
--name turing-machine-simulator-app \
-p 8080:8080 \
milosz08/turing-machine-simulator-app:latest
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
Created by MiĆosz Gilga. If you have any questions about this application, send message: [email protected]â .
This application is on Apache 2.0 License.
Content type
Image
Digest
sha256:800d039b5âŠ
Size
19.4 MB
Last updated
10 months ago
docker pull milosz08/turing-machine-simulator-app