Sign inSign up

brucepc/aptly

By brucepc

Updated over 8 years ago

Aptly repos

Image
0

220

brucepc/aptly repository overview

Aptly docker container

Env vars

  • APTLY_CONFIG Used to point aptly.conf file. The default value is /etc/aptly.conf.
  • APTLY_PARAMS Used to auto fill some params from aptly. The container entrypoint will always add -config=$APTLY_CONFIG when run aptly.
  • ENTRYPOINT_VERBOSE Used to set -x into sh entrypoint environment.

Get started

Let's create a volume to keep the things.

docker volume create aptly.data

So now we create a branding new repos.

docker  run --rm -ti -v aptly.data:/aptly brucepc/aptly \
    repo create myrepo

Now you can publish your repos

docker run --rm -ti -v aptly.data:/aptly brucepc/aptly \
    publish -distribution=stretch -architectures=amd64 \
    -skip-signing repo myrepo

And finaly to start a server

docker run -d -v aptly.data:/aptly brucepc/aptly

Tag summary

Content type

Image

Digest

Size

181.3 MB

Last updated

over 8 years ago

docker pull brucepc/aptly