mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-12-23 10:38:58 +00:00
Use sites volume in all commands
This commit is contained in:
parent
3ed66d8333
commit
16cc6baf4c
@ -221,7 +221,7 @@ Environment Variables
|
|||||||
- `WITH_FILES` if set to 1, it will backup user-uploaded files.
|
- `WITH_FILES` if set to 1, it will backup user-uploaded files.
|
||||||
- By default `backup` takes mariadb dump and gzips it. Example file, `20200325_221230-test_localhost-database.sql.gz`
|
- By default `backup` takes mariadb dump and gzips it. Example file, `20200325_221230-test_localhost-database.sql.gz`
|
||||||
- If `WITH_FILES` is set then it will also backup public and private files of each site as uncompressed tarball. Example files, `20200325_221230-test_localhost-files.tar` and `20200325_221230-test_localhost-private-files.tar`
|
- If `WITH_FILES` is set then it will also backup public and private files of each site as uncompressed tarball. Example files, `20200325_221230-test_localhost-files.tar` and `20200325_221230-test_localhost-private-files.tar`
|
||||||
- All the files generated by backup are placed at volume location `sites/{site-name}/private/backups/*`
|
- All the files generated by backup are placed at volume location `sites-vol:/{site-name}/private/backups/*`
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker exec -it \
|
docker exec -it \
|
||||||
@ -230,7 +230,7 @@ docker exec -it \
|
|||||||
<project-name>_erpnext-python_1 docker-entrypoint.sh backup
|
<project-name>_erpnext-python_1 docker-entrypoint.sh backup
|
||||||
```
|
```
|
||||||
|
|
||||||
The backup will be available in the `sites` mounted volume.
|
The backup will be available in the `sites-vol` volume.
|
||||||
|
|
||||||
#### Push backup to s3 compatible storage
|
#### Push backup to s3 compatible storage
|
||||||
|
|
||||||
@ -250,7 +250,7 @@ Environment Variables
|
|||||||
-e "SECRET_ACCESS_KEY=secret_access_from_provider" \
|
-e "SECRET_ACCESS_KEY=secret_access_from_provider" \
|
||||||
-e "ENDPOINT_URL=https://region.storage-provider.com" \
|
-e "ENDPOINT_URL=https://region.storage-provider.com" \
|
||||||
-e "BUCKET_DIR=frappe-bench-v12" \
|
-e "BUCKET_DIR=frappe-bench-v12" \
|
||||||
-v ./installation/sites:/home/frappe/frappe-bench/sites \
|
-v sites-vol:/home/frappe/frappe-bench/sites \
|
||||||
--network <project-name>_default \
|
--network <project-name>_default \
|
||||||
frappe/frappe-worker:v12 push-backup
|
frappe/frappe-worker:v12 push-backup
|
||||||
```
|
```
|
||||||
@ -308,7 +308,7 @@ docker run \
|
|||||||
-e "SECRET_ACCESS_KEY=secret_access_from_provider" \
|
-e "SECRET_ACCESS_KEY=secret_access_from_provider" \
|
||||||
-e "ENDPOINT_URL=https://region.storage-provider.com" \
|
-e "ENDPOINT_URL=https://region.storage-provider.com" \
|
||||||
-e "BUCKET_DIR=frappe-bench-v12" \
|
-e "BUCKET_DIR=frappe-bench-v12" \
|
||||||
-v ./installation/sites:/home/frappe/frappe-bench/sites \
|
-v sites-vol:/home/frappe/frappe-bench/sites \
|
||||||
-v ./backups:/home/frappe/backups \
|
-v ./backups:/home/frappe/backups \
|
||||||
--network <project-name>_default \
|
--network <project-name>_default \
|
||||||
frappe/frappe-worker:v12 restore-backup
|
frappe/frappe-worker:v12 restore-backup
|
||||||
|
Loading…
Reference in New Issue
Block a user