From a7b50c954d7fdc1d7c5020d9f2e589f12e0c62e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 May 2023 13:50:27 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-build-agent.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 images/docker-build-agent.md diff --git a/images/docker-build-agent.md b/images/docker-build-agent.md new file mode 100755 index 0000000000..00384a5b35 --- /dev/null +++ b/images/docker-build-agent.md @@ -0,0 +1,31 @@ +--- +title: build-agent +--- + + + +# linuxserver/build-agent + +Used as part of the LSIO build process. Not for public consumption. + +## Running + +```yml +services: + build-agent: + image: lscr.io/linuxserver/build-agent:latest + privileged: true + container_name: build-agent + environment: + - TZ=London/Europe + - 'PUBLIC_KEY=' + - PUID=1000 + - PGID=1000 + volumes: + - ./docker-data:/config + ports: + - 2222:2222 + restart: unless-stopped +``` + +- { date: "30.04.23:", desc: "Initial Release." }