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