https://github.com/guitarrapc/s3sync-docker
This repository contains docker image for s3sync
https://github.com/guitarrapc/s3sync-docker
docker s3-sync
Last synced: 8 months ago
JSON representation
This repository contains docker image for s3sync
- Host: GitHub
- URL: https://github.com/guitarrapc/s3sync-docker
- Owner: guitarrapc
- License: mit
- Created: 2018-01-03T23:02:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-15T20:34:32.000Z (over 6 years ago)
- Last Synced: 2025-02-08T04:23:28.654Z (over 1 year ago)
- Topics: docker, s3-sync
- Language: Dockerfile
- Homepage: https://github.com/guitarrapc/S3Sync
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Supported Linux amd64 tags
depends on [dotnet-docker](https://github.com/dotnet/dotnet-docker) image and [aws-sdk-net for .net core](https://github.com/aws/aws-sdk-net)
currently base image is `microsoft/dotnet:2.0-runtime`.
## Usage
You can run with docker.
Run with IAM Role is recommended.
```bash
docker run --rm -v :/app/sync/ -e S3Sync_BucketName= guitarrapc/s3sync
```
Local run without IAM Role, use AWS Credentials.
```bash
$ docker run --rm -v :/app/sync/ -e S3Sync_BucketName= -e AWS_ACCESS_KEY_ID= -e AWS_SECRET_ACCESS_KEY= guitarrapc/s3sync
```
Check [guitarrapc/S3Sync](https://github.com/guitarrapc/S3Sync#docker-support) for more detail.