Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Docker Terminology #11

Open
chris-pryazhentsev opened this issue Aug 16, 2021 · 2 comments
Open

Docker Terminology #11

chris-pryazhentsev opened this issue Aug 16, 2021 · 2 comments

Comments

@chris-pryazhentsev
Copy link

What is the proper docker terminology in order to pass the required flags into the container in order to get the container running? I attempted:
docker container run -it [image] ./discord-influx --influxdb-url [URL] --influxdb-org [org] --influxdb-bucket [bucketname]

However was given an error of:

Error: unknown command "./discord-influx" for "discord-influx"
Run 'discord-influx --help' for usage.
unknown command "./discord-influx" for "discord-influx"

Are there Environment Variables instead for me to put the required info in instead?

Thanks!

@riptl
Copy link
Owner

riptl commented Aug 16, 2021

@that-llama-in-a-tuxedo This should work:

docker run -it [image] --influxdb-url [URL] --influxdb-org [org] --influxdb-bucket [bucketname]

@riptl
Copy link
Owner

riptl commented Aug 16, 2021

Are there Environment Variables instead for me to put the required info in instead?

At the moment, only flags work for these options.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants