Skip to content
Open
Changes from all 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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ graph LR
cp .env.example .env

# Start the application using Docker/Podman Compose
docker/podman compose --env-file .env up
Docker: docker compose --env-file .env up
Podman: podman compose --env-file .env up
Comment on lines +137 to +138

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The current formatting with Docker: and Podman: prefixes on the command lines themselves will cause an error if a user tries to copy and paste the entire line into their terminal. To improve usability and truly make the commands 'super clear' and easy to run, it would be better to have the descriptive labels as comments and the commands themselves as directly executable lines.

Could we reformat this to ensure the commands are directly copy-pasteable?

Suggested change
Docker: docker compose --env-file .env up
Podman: podman compose --env-file .env up
# Using Docker:
docker compose --env-file .env up
# Using Podman:
podman compose --env-file .env up

```

For existing users, use:
Expand Down