Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Download the latest executable webapp "one-click-run" from releases
  2. Either double-click on the download, or run the following command to start Fedora

    Code Block
    java -jar fcrepo-webapp-<version>-jetty-console.jar


  3. Once Fedora is seen to be running at the following URL, start exploring the feature tour

    No Format
    http://localhost:8080/rest/

    Note, port 8080 is the default. Replace that port number in the above URL if you used a different value.

Using Docker

If you'd like to run using docker you can simply install docker and then run the following command:

For the latest bleeding edge development:

No Format
docker run -p8080:8080 --name=fcrepo fcrepo/fcrepo

For a particular version:
No Format
docker run -p8080:8080 --name=fcrepo fcrepo/fcrepo:6.0.0-beta-1

Servlet Containers

Alternatively, instead of deploying Fedora via the "one-click run", the Fedora web-application can be installed by dropping the WAR file into a servlet 3 container, such as Tomcat 9 or Jetty 9.
For details on installing Fedora to those containers, see the Deployment guide.

...