4 lines
140 B
Bash
Executable file
4 lines
140 B
Bash
Executable file
#!/bin/bash
|
|
# $1 is for the container to be copied
|
|
# $2 is the name of the newly snapshotted container
|
|
lxc-copy -n $1 -N $2 -B overlayfs -s
|