mirror of
https://github.com/openfaas/faas.git
synced 2025-06-18 20:16:37 +00:00
- re-vendor queue-worker for publisher via 0.6.0 - bump queue-worker version to 0.6.0 in docker-compose.yml for AMD64 - use new naming for NATS of nats -> NATS in variables where required - add default reconnect of 60 times, 2 seconds apart. Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
12 lines
199 B
Bash
Executable File
12 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export eTAG="latest-dev"
|
|
echo $1
|
|
if [ $1 ] ; then
|
|
eTAG=$1
|
|
fi
|
|
|
|
echo Building openfaas/queue-worker:$eTAG
|
|
|
|
docker build --build-arg http_proxy=$http_proxy -t openfaas/queue-worker:$eTAG .
|