mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +00:00
13 lines
227 B
Markdown
13 lines
227 B
Markdown
# Run git client in docker
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
docker run \
|
|
--name git-cli \
|
|
--mount type=bind,src=/etc/localtime,dst=/etc/localtime,readonly \
|
|
--mount type=bind,src=/data/,dst=/data/ \
|
|
newnius/git-cli git push origin
|
|
```
|
|
|