8 lines
223 B
Bash
Executable File
8 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
# Usage: ./build-all.sh [image-name]
|
|
|
|
name="${1:-flyspray}"
|
|
|
|
docker build -t "$name:1.0-rc10-mysqli" -t "$name:1.0-rc10" -t "$name:latest" ./1.0-rc10/mysqli
|
|
docker build -t "$name:1.0-rc10-pgsql" ./1.0-rc10/pgsql
|