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