mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
e08a3303bf
* Add new storage backend: Dropbox (#103)
* Remove duplicate check
* Add concurrency level for parallel upload to dropbox.
* Fixed some instabilites. Changed default concurrency to 6.
* Added some env config vars to readme. WIP
* Wrap errors for storage backend creation.
* Fixed token issue, added OAuth2 including recipe and docs.
* Readme typo fix
* Test for dropbox integration
* Update info and TOC
* Missed a file
* Docker-compose fix
* Fix endpoint connection
* Fix container names
* Fix log fetching
* Fix log fetching (again)
* Print command output to logs
* Addressing comments part 1
* Address comments part 2
* OpenAPI Mock spec path adjusted
* Dropbox FileMetadata reflection refactored
* NaturalNumber type added
* Add OAuth2 mock server for CI testing
* Fix env name of oauth2 endpoint
* Remove hostname
* Add forgotten change to commit...
* Fix oauth2 endpoint
"Worked on my machine"
* Try again
* Try suggested hostname again
* Fix docker internal DNS resolving issues (as suggested by oauth2 mock docs)
* Add docker network, remove hostname
* Network not external
* Last hostname try
* Add more delay, add oauth2 endpoint log
* Temp CI log output of command even when failing
* Try different config and method
* Add custom server-hostname. Rename test folder to accellerate debugging
* Try that fix again
* Adding quotes
* Port fix attempt
* Try localhost
* Try extra hosts
* Change network mode
* Undo some changes
* Use static IP
* Remove specific IP binding
* Change to default net driver
* Fix static IP
* Squash for revert
* Revert "Squash for revert"
This reverts commit e9b617be9a
.
* Actual fix for CI testing from #257
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
openapi_mock:
|
|
image: muonsoft/openapi-mock
|
|
environment:
|
|
OPENAPI_MOCK_USE_EXAMPLES: if_present
|
|
OPENAPI_MOCK_SPECIFICATION_URL: '/etc/openapi/user_v2.yaml'
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- ./user_v2.yaml:/etc/openapi/user_v2.yaml
|
|
|
|
oauth2_mock:
|
|
image: ghcr.io/navikt/mock-oauth2-server:1.0.0
|
|
ports:
|
|
- 8090:8090
|
|
environment:
|
|
PORT: 8090
|
|
JSON_CONFIG_PATH: '/etc/oauth2/config.json'
|
|
volumes:
|
|
- ./oauth2_config.json:/etc/oauth2/config.json
|
|
|
|
backup:
|
|
image: offen/docker-volume-backup:${TEST_VERSION:-canary}
|
|
hostname: hostnametoken
|
|
depends_on:
|
|
- openapi_mock
|
|
- oauth2_mock
|
|
restart: always
|
|
environment:
|
|
BACKUP_FILENAME_EXPAND: 'true'
|
|
BACKUP_FILENAME: test-$$HOSTNAME.tar.gz
|
|
BACKUP_CRON_EXPRESSION: 0 0 5 31 2 ?
|
|
BACKUP_RETENTION_DAYS: ${BACKUP_RETENTION_DAYS:-7}
|
|
BACKUP_PRUNING_LEEWAY: 5s
|
|
BACKUP_PRUNING_PREFIX: test
|
|
DROPBOX_ENDPOINT: http://openapi_mock:8080
|
|
DROPBOX_OAUTH2_ENDPOINT: http://oauth2_mock:8090
|
|
DROPBOX_REFRESH_TOKEN: test
|
|
DROPBOX_APP_KEY: test
|
|
DROPBOX_APP_SECRET: test
|
|
DROPBOX_REMOTE_PATH: /test
|
|
DROPBOX_CONCURRENCY_LEVEL: 6
|
|
volumes:
|
|
- app_data:/backup/app_data:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
offen:
|
|
image: offen/offen:latest
|
|
labels:
|
|
- docker-volume-backup.stop-during-backup=true
|
|
volumes:
|
|
- app_data:/var/opt/offen
|
|
|
|
volumes:
|
|
app_data:
|