8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
# Define volume items for docker-registry container
|
|
# These are used across backup, restore, create, and destroy operations
|
|
|
|
get_registry_volumes() {
|
|
echo "volume:data:${DATA_VOLUME}"
|
|
}
|