I want to be able to distribute docker-compose.yaml without any dependencies. In order to do that, I should make it pull stable images from hub.docker.com instead of trying to build them locally. This will avoid users running untested code from the github repo instead of using the tested version on docker hub.
12 lines
166 B
Bash
Executable File
12 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Use this script to build docker images.
|
|
|
|
DOCKER=docker
|
|
|
|
|
|
$DOCKER build -t maxking/mailman-core core/
|
|
$DOCKER build -t maxking/mailman-web web/
|