Docker, Github

This commit is contained in:
LeLawnGames
2024-12-11 03:08:08 -05:00
parent d132e33f63
commit 69da5fec22
4 changed files with 76 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
# Docker Commands
## Entering a Container
To enter a container:
```bash
docker exec -it [container name]
```
## Working inside a Container
Generally, once inside the container you can act the same as you would in any other terminal instance. However, containers are restricted by what has been natively integrated into the container. For example if you need to run a curl command you would need to ensure curl is installed, or use wget which is more common inside containers.
To exit the container:
```bash
#/ exit
```