From bd0b1c1d4a11a42d14f47739593e60a491fa6433 Mon Sep 17 00:00:00 2001 From: syui Date: Wed, 16 Jul 2025 09:49:17 +0000 Subject: [PATCH] =?UTF-8?q?docker=20=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docker.md diff --git a/docker.md b/docker.md new file mode 100644 index 0000000..489d148 --- /dev/null +++ b/docker.md @@ -0,0 +1,28 @@ +```sh +docker run -d -p 5000:5000 --name registry --restart=always registry:2 + +docker tag at-pds:latest localhost:5000/pds:latest +docker tag at-ozone-web:latest localhost:5000/ozone-web:latest +docker tag at-bgs:latest localhost:5000/bgs:latest +docker tag at-jetstream:latest localhost:5000/jetstream:latest +docker tag at-bsky:latest localhost:5000/bsky:latest +docker tag at-ozone-daemon:latest localhost:5000/ozone-daemon:latest +docker tag at-ozone:latest localhost:5000/ozone:latest +docker tag at-plc:latest localhost:5000/plc:latest +docker tag at-social-app:latest localhost:5000/social-app:latest + +docker push localhost:5000/pds:latest +docker push localhost:5000/ozone-web:latest +docker push localhost:5000/bgs:latest +docker push localhost:5000/jetstream:latest +docker push localhost:5000/bsky:latest +docker push localhost:5000/ozone-daemon:latest +docker push localhost:5000/ozone:latest +docker push localhost:5000/plc:latest +docker push localhost:5000/social-app:latest +``` + +```sh +# docker-compose up -d --no-build +docker-compose up -d --pull always +``` \ No newline at end of file