Skip to content

Commit 49c9dae

Browse files
authored
Make terms more accurate
1 parent f0a35fb commit 49c9dae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ Inputting one of these commands and pressing the Enter key will execute the comm
3939

4040
<hr>
4141

42-
# The Docker Update
43-
For a much increased ability to compute, better portability, and fine control of the permissions programs are able to exercise, Docker containers will be replacing Rust programs in the near future.
42+
# The Podman Update
43+
For a much increased ability to compute, better portability, and fine control of the permissions programs are able to exercise, Podman containers will be replacing Rust programs in the near future.
4444

4545
A set of commands for managing task may look like:
4646
```ruby
4747
# Start container with limited network and file access
48-
docker run --network none --rm --name=<taskID> -v "C:\Program Files\DCC\TaskData\<taskID>:/dcc_output/" <taskIDImg> /bin/bash run.sh;
48+
podman run --network none --rm --name=<taskID> -v "C:\Program Files\DCC\TaskData\<taskID>:/dcc_output/" <taskIDImg> /bin/bash run.sh;
4949
# Wait for the container to exit and return exit code (This will be done in a background thread, and will time out when mining ends)
50-
docker wait <taskID>;
50+
podman wait <taskID>;
5151
# Stop the container
52-
docker stop <taskID>;
52+
podman stop <taskID>;
5353
```
5454

5555
## Computation Buying

0 commit comments

Comments
 (0)