diff --git a/README.md b/README.md index fb27e0cf..0325073d 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ download **[copyparty-sfx.py](https://github.com/9001/copyparty/releases/latest/ * or install through pypi (python3 only): `python3 -m pip install --user -U copyparty` * or if you cannot install python, you can use [copyparty.exe](#copypartyexe) instead -* or if you prefer to [use docker](./scripts/docker/) you can do that too 🐋 +* or if you prefer to [use docker](./scripts/docker/) 🐋 you can do that too running the sfx without arguments (for example doubleclicking it on Windows) will give everyone read/write access to the current folder; you may want [accounts and volumes](#accounts-and-volumes) diff --git a/scripts/docker/Makefile b/scripts/docker/Makefile index 5e16b9b3..2b32d79e 100644 --- a/scripts/docker/Makefile +++ b/scripts/docker/Makefile @@ -34,6 +34,16 @@ push: docker push copyparty/iv docker push copyparty/ac docker push copyparty/dj + docker image tag copyparty/min:latest ghcr.io/9001/copyparty-min:latest + docker image tag copyparty/im:latest ghcr.io/9001/copyparty-im:latest + docker image tag copyparty/iv:latest ghcr.io/9001/copyparty-iv:latest + docker image tag copyparty/ac:latest ghcr.io/9001/copyparty-ac:latest + docker image tag copyparty/dj:latest ghcr.io/9001/copyparty-dj:latest + docker push ghcr.io/9001/copyparty-min:latest + docker push ghcr.io/9001/copyparty-im:latest + docker push ghcr.io/9001/copyparty-iv:latest + docker push ghcr.io/9001/copyparty-ac:latest + docker push ghcr.io/9001/copyparty-dj:latest clean: -docker kill `docker ps -q` diff --git a/scripts/docker/README.md b/scripts/docker/README.md index e64e85db..5e650653 100644 --- a/scripts/docker/README.md +++ b/scripts/docker/README.md @@ -13,7 +13,7 @@ docker run --rm -it -u 1000 -p 3923:3923 -v /mnt/nas:/w -v $PWD/cfgdir:/cfg copy * `/w` is the path inside the container that gets shared by default, so mount one or more folders to share below there * `/cfg` is an optional folder with zero or more config files (*.conf) to load * `copyparty/ac` is the recommended [image edition](#editions) -* you can download the image from github instead by replacing `copyparty/ac` with TODO +* you can download the image from github instead by replacing `copyparty/ac` with `ghcr.io/9001/copyparty-ac` i'm unfamiliar with docker-compose and alternatives so let me know if this section could be better 🙏