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