create.sh 534 B

1234567891011121314
  1. #!/bin/sh -
  2. # Sample of how one might start up an rpki-rp container, season to
  3. # taste. This configuration publishes the rpki-rtr port globally, and
  4. # publishes the rcynic web status pages to localhost on port 8888.
  5. docker create -it \
  6. --name rpki-rp \
  7. --privileged \
  8. --publish 323:323 \
  9. --publish 127.0.0.1:8888:80 \
  10. --mount 'type=volume,source=rpki-rp-postgres,target=/var/lib/postgresql/9.6/main' \
  11. --mount 'type=volume,source=rpki-rp-rcynic,target=/var/rcynic' \
  12. rpki-rp:latest