updated docker/README.md

This commit is contained in:
hyung-hwan 2021-09-08 23:06:57 +00:00
parent ea052d5050
commit 557fb8c0b8

View File

@ -1,8 +1,17 @@
If you require the root privilege to build a docker image, specify sudo in DOCKER. If you require the root privilege to build a docker image, specify sudo in DOCKER.
make rocky8 DOCKER="sudo docker" ```
make rocky8 DOCKER="sudo docker"
```
Run the service Run the service like
docker run -dit --restart unless-stopped --name codepot -p 7000:80 codepot:ubnt20.04 ```
docker run -dit --restart=unless-stopped --name=codepot codepot:ubnt20.04
docker run -dit --restart=unless-stopped --name=codepot -p 80:80 codepot:ubnt20.04
docker run -dit --restart=unless-stopped --name=codepot -p 80:80 -v /home/container-data/codepot:/var/lib/codepot codepot:ubnt20.04
docker run -dit --restart=unless-stopped --name=codepot -p 1200:1200 -v /home/container-data/codepot:/var/lib/codepot codepot:ubnt20.04 --port 1200 --hide-index-page=yes --https-redirected=yes
```
Run the shell on the existing container Run the shell on the existing container for in-container management.
docker exec -it codepot /bin/bash ```
docker exec -it codepot /bin/bash
```