-
Notifications
You must be signed in to change notification settings - Fork 1
docs(onboarding): make docker the default path #1088
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4085637
fe1b045
dffae70
52ec0cc
16820f0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| --- | ||
| import { Aside } from "@astrojs/starlight/components"; | ||
| --- | ||
|
|
||
| <Aside type="note" title="Automatic generation is optional"> | ||
| The "paste a website URL and generate a feed" workflow is not enabled by default. If you want it, continue | ||
| with <a href="/web-application/how-to/use-automatic-feed-generation/">Use automatic feed generation</a>. | ||
| </Aside> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| --- | ||
| import Code from "astro/components/Code.astro"; | ||
|
|
||
| const code = `services: | ||
| html2rss-web: | ||
| image: gilcreator/html2rss-web | ||
| restart: unless-stopped | ||
| ports: | ||
| - "127.0.0.1:3000:3000" | ||
| volumes: | ||
| - type: bind | ||
| source: ./feeds.yml | ||
| target: /app/config/feeds.yml | ||
| read_only: true | ||
| environment: | ||
| RACK_ENV: production | ||
| HEALTH_CHECK_USERNAME: health | ||
| HEALTH_CHECK_PASSWORD: CHANGE_THIS_PASSWORD_BEFORE_USE | ||
| BROWSERLESS_IO_WEBSOCKET_URL: ws://browserless:3001 | ||
| BROWSERLESS_IO_API_TOKEN: 6R0W53R135510 | ||
|
Comment on lines
+16
to
+20
|
||
|
|
||
| browserless: | ||
| image: "ghcr.io/browserless/chromium" | ||
| restart: unless-stopped | ||
| ports: | ||
| - "127.0.0.1:3001:3001" | ||
| environment: | ||
| PORT: 3001 | ||
| CONCURRENT: 10 | ||
| TOKEN: 6R0W53R135510`; | ||
|
Comment on lines
+27
to
+30
|
||
| --- | ||
|
|
||
| <Code code={code} lang="yaml" /> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
astro/components/Code.astrois a low-level Astro component import and may not match Starlight’s code-block styling (and can be brittle across Astro versions). Prefer using Starlight’s exported Code component (or a plain fenced code block) so this snippet renders consistently with the rest of the docs site.