Skip to content
GitLab
Explore
Sign in
This is an archived project. Repository and other project resources are read-only.
Changes
Page history
Updated Home (markdown)
authored
May 26, 2017
by
Petter Goksøyr Åsen
Show whitespace changes
Inline
Side-by-side
Home.md
View page @
4230b188
...
@@ -44,12 +44,10 @@ At OPL we are running the backup against a read-only slave, as not to create add
...
@@ -44,12 +44,10 @@ At OPL we are running the backup against a read-only slave, as not to create add
#### Fuseki
#### Fuseki
Fuseki
Backup with
Backup with
docker run --rm \
docker run --rm \
-v
kohaprod
_fuseki_data:/from \
-v
<networkname>
_fuseki_data:/from \
-v $(pwd):/to \
-v $(pwd):/to \
alpine ash -c "cd /from ; tar -cf /to/fusekidata.tar ."
alpine ash -c "cd /from ; tar -cf /to/fusekidata.tar ."
...
@@ -58,9 +56,11 @@ Restore with
...
@@ -58,9 +56,11 @@ Restore with
docker stop fuseki
docker stop fuseki
docker run --rm \
docker run --rm \
-v $(pwd):/from \
-v $(pwd):/from \
-v
dockercompose
_fuseki_data:/to \
-v
<networkname>
_fuseki_data:/to \
alpine ash -c "cd /to ; tar -xf /from/fusekidata.tar"
alpine ash -c "cd /to ; tar -xf /from/fusekidata.tar"
Replace
<networkname>
with the name of your docker-network.
#### Others
#### Others
## Customizations
## Customizations
...
...