See the ddf homepage
To start a basic default DDF instance
docker run -name some-ddf -d codice/ddf
To expose the ddf ui:
docker run -name some-ddf -d -p 8993:8993 codice/ddf
To persist data/configurations mount either a volume container or a local folder to /opt/ddf/data
To configure the system mount a volume container or local folder to /opt/ddf/etc
To deploy bundles that are not packaged with the DDF distribution mount a volume container or local folder to /opt/ddf/deploy
Currently this container provides a custom entrypoint that has two hooks for pre-start and post start configuration.
To apply custom configuration steps before startup, mount a script via docker volumes to /opt/entrypoint/pre_start.sh
To apply custom configuration steps after startup, mount a script via docker volumes to /opt/entrypoint/post_start.sh
Port | Purpose |
---|---|
8101 | DDF SSH server |
8181 | http |
8993 | https |
For advanced usage see: ddf-base