1
0
Fork 0
This commit is contained in:
Ilya Mukhortov 2026-01-13 17:26:35 +10:00
parent 29d32b9146
commit e06c947a47
1 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
set -e set -e
NETWORK_NAME=medicine-network
if [ -z $(docker network ls --filter name=^${NETWORK_NAME}$ --format="{{ .Name }}") ] ; then
docker network create ${NETWORK_NAME} ;
fi
echo "readonly" | docker login docker.med-logic.ru --username readonly --password-stdin echo "readonly" | docker login docker.med-logic.ru --username readonly --password-stdin
docker pull docker.med-logic.ru/medicine-dashboard:latest docker pull docker.med-logic.ru/medicine-dashboard:latest
docker tag docker.med-logic.ru/medicine-dashboard:latest medicine-dashboard:latest docker tag docker.med-logic.ru/medicine-dashboard:latest medicine-dashboard:latest
docker compose up -d