-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Zoey <[email protected]>
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# git-updates | ||
|
||
## How to use? | ||
|
||
If you want to have always the newest copy of a repo (for example of a static website) on your disk you can use this compose file: | ||
|
||
```yaml | ||
services: | ||
git-repo: | ||
container_name: git-updater-git-repo | ||
image: zoeyvid/git-updater:latest | ||
restart: always | ||
network_mode: bridge | ||
volumes: | ||
- "/path/to/git-repo:/src" | ||
environment: | ||
- "TZ=Europe/Berlin" | ||
user: 1000:1000 | ||
``` | ||
make sure to change /path/to/git-repo and to user ids to match the correct user, you can also use root |