-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Update InfluxDB Docker content.md #2586
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
Open
MeelahMe
wants to merge
41
commits into
docker-library:master
Choose a base branch
from
MeelahMe:docs/docker-readme-update
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
bc975d3
docs: add introduction to InfluxDB 3 Core and Enterprise editions
MeelahMe 9cfa2bf
docs: add InfluxDB 3 Core and Enterprise startup sections to Docker R…
MeelahMe e6eb2b4
docs: add data persist section to Docker README
MeelahMe 80c9604
Updates to InfluxDB Core section
MeelahMe 14e812c
docs: update Docker instructions for InfluxDB 3 Core with correct run…
MeelahMe c84f52e
updates to data persist section
MeelahMe 6df37aa
docs: explain official images hosted on Quay.io and other explainator…
MeelahMe 5cafc20
minor updates to transistion into v2 and v1 Docker setup
MeelahMe 1cbc31f
docs: add Docker usage examples for InfluxDB 3 and simplify v1/v2 sec…
MeelahMe 36c0f2b
add a extra line at end of doc for troubleshooting
MeelahMe 06765c8
updates to InfluxDB and InfluxDB 3 introductions
MeelahMe 414a73e
clarify version coverage and improve navigation for InfluxDB Docker R…
MeelahMe 9578857
remove autogenerated README.md and backup file from PR
MeelahMe 4c13ff4
trying to resolve markdown formatting to pass CI
MeelahMe af376a1
docs: testing TOC
MeelahMe 613c45a
docs: updates to TOC test
MeelahMe ea1df44
docs: reverting TOC
MeelahMe 6df42a8
docs: adding docker compose section to Core and embedding compose
MeelahMe 580df41
docs: updates to docker compose and cli sections
MeelahMe 26d84f1
adding compose.yaml
MeelahMe 9a0498e
[ROS] Update Official Docker image docs (#2578)
ruffsl c8bc4fe
ArangoDB: Slightly update license and setting the language (#2587)
Simran-B 57afe73
Add .gitattributes: Ensure Unix line endings for text files
Simran-B e7c1d1b
Update content.md
Disservin 61849a6
Update influxdb/content.md
MeelahMe f7d0fc3
Update influxdb/content.md
MeelahMe e3196d8
Update influxdb/content.md
MeelahMe 5d233aa
Update influxdb/content.md
MeelahMe 6491330
Update influxdb/content.md
MeelahMe ba1b0cd
Update influxdb/content.md
MeelahMe f583227
Update influxdb/content.md
MeelahMe 423705d
docs: correcting port connections
MeelahMe aee0b17
docs: updates to connection ports and docker volume sections
MeelahMe acf0aa5
docs: updates to core and enterpirse Docker and CLi sections
MeelahMe 4601bf2
fixing mardown formatting for content.md
MeelahMe 0502026
Remove autogenerated README.md accidentally introduced in merge commi…
MeelahMe ba9f56e
Trying to restore README.md to match origin/master
MeelahMe 7b257f1
Remove stray README.md-e file
MeelahMe 21a5d49
docs: minor changes to influxdb 3 and docker images sections
MeelahMe ff394a8
docs: minor update to enterprise section
MeelahMe 863c5cd
WIP: adding Docker enviroment variable
MeelahMe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/opt/homebrew/bin/bash | ||
set -Eeuo pipefail | ||
|
||
repo="${1:-}" | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/opt/homebrew/bin/bash | ||
set -Eeuo pipefail | ||
|
||
repo="${1:-}" | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/opt/homebrew/bin/bash | ||
set -eo pipefail | ||
|
||
repo="$1" | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# compose.yaml | ||
services: | ||
influxdb3-core: | ||
container_name: influxdb3-core | ||
image: influxdb:3-core | ||
ports: | ||
- 8181:8181 | ||
command: | ||
- influxdb3 | ||
- serve | ||
- --node-id=node0 | ||
- --object-store=file | ||
- --data-dir=/var/lib/influxdb3 | ||
- --plugin-dir=/var/lib/influxdb3-plugins | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"hub": { | ||
"categories": [ | ||
"languages-and-frameworks", | ||
"machine-learning-and-ai", | ||
"operating-systems" | ||
] | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
docker-library
doesn't generate or support a TOC, we need to be clear that the readme contains info for all 3 versions.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.
The sample
compose.yaml
for all 3 would be nice to have.