10 lines
219 B
Bash
10 lines
219 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
# Required, otherwise package building will fail.
|
||
|
echo N | sudo tee /sys/module/overlay/parameters/metacopy
|
||
|
|
||
|
docker pull wordpress:5
|
||
|
docker build --force-rm -t nathan/wordpress -f Dockerfile build
|