10 lines
325 B
Bash
10 lines
325 B
Bash
#!/bin/bash -ex
|
|
|
|
docker login -u richard -p $DKREGISTRY_PASS $DKREGISTRY
|
|
|
|
(cd fluentd && docker-compose -f docker-compose.yml build)
|
|
(cd cron && docker-compose -f docker-compose.yml -f ../network.yml build)
|
|
|
|
docker push dkregistry.xai-corp.net:5000/fluentd:latest
|
|
docker push dkregistry.xai-corp.net:5000/xaicorp/cron:latest
|