This commit is contained in:
cupcakearmy 2023-03-09 02:30:33 +01:00
parent 9abca53ab3
commit a58e59c43b
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 13 additions and 1 deletions

View File

@ -4,8 +4,16 @@ Simple docker image that syncs your Github repos to a given Gitea server. It tak
## Quick Start
```yaml
Create a `docker-compose.yaml` and `.env` (see `.env.sample`). Create and insert tokens and you are ready to go.
```yaml
version: '3.8'
services:
sync:
image: cupcakearmy/gitea-sync
restart: unless-stopped
env_file: .env
```
## Configuration

View File

@ -1,7 +1,11 @@
# FOR DEVELOPMENT ONLY
# See README.md for an example
version: "3.8"
services:
job:
image: cupcakearmy/gitea-sync
build: .
env_file: .env