Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ services:
interval: 5s
volumes:
- db-data:/var/lib/postgresql/data
adminer:
image: adminer

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add the container name and a specific release tag of adminer, e.g.:

    container_name: ${PREFIX}-adminer
    image: adminer:5.4.2

restart: always
ports:
- 8080:8080

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- 8080:8080
- 8080:8080
depends_on:
- db

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is one last suggestion I have before merging the PR

solr:
container_name: ${PREFIX}-solr
image: solr:8
Expand Down
9 changes: 9 additions & 0 deletions docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ TeSS is accessible at the following URL:

<http://localhost:3000>


Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove this line

### Access Adminer

An Adminer instance is accessible at the following URL:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add the link to Adminer https://www.adminer.org/
and add something like 'An Adminer instance to connect to and visualize your local database...'


<http://localhost:8080>

Credentials are in the .env file (choose PostgreSQL for "System").

### Testing

The full test suite can be run using the following command:
Expand Down
Loading