Skip to content

Commit 5d79b83

Browse files
committed
doc: update installing-upgrading.md regarding custom stylesheets
1 parent 9cac931 commit 5d79b83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/installing-upgrading.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ Generally the database must be started, migrated and populated first.
5454

5555
### Option 1: Run REMS from Docker Hub
5656

57-
This tries to fetch the latest REMS image from Docker Hub. This uses the default `docker-compose.yml` file.
57+
This tries to fetch the latest REMS image from Docker Hub. This uses the default `docker-compose.yml` file. It doesn't include files referred to in default config, such as `example-theme/extra-styles.css`, which includes default fonts.
5858

5959
docker-compose up -d db
6060
docker-compose run --rm -e CMD="migrate;test-data" app
6161
docker-compose up -d app
6262

6363
### Option 2: Use config file simple-config.edn instead of environment variables
6464

65-
The other build file `docker-compose-config.yml` shows how to configure an external config file named `simple-config.edn`. The file is provided through a volume mounted to the correct place in the container. Don't forget to map all the files you refer to in the config (like `theme.edn`) with similar volumes. Alternatively, you could build your own image on top of our base image, so that it includes the files inside. We prefer to have one image that is same in all environments and use mappings to provide the varying data (config).
65+
The other build file `docker-compose-config.yml` shows how to configure an external config file named `simple-config.edn`, and custom stylesheet file named `extra-styles.css` which includes default fonts. The files are provided through volumes mounted to the correct place in the container. Don't forget to map all the files you refer to in the config (like `theme.edn`) with similar volumes. Alternatively, you could build your own image on top of our base image, so that it includes the files inside. We prefer to have one image that is same in all environments and use mappings to provide the varying data (config).
6666

6767
docker-compose -f docker-compose-config.yml up -d db
6868
docker-compose -f docker-compose-config.yml run --rm -e CMD="migrate;test-data" app

0 commit comments

Comments
 (0)