https://docs.docker.com/compose/environment-variables/set-environment-variables/
I really like using .env files, but you can hard code env vars in the compose file itself if you want.
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
No spam posting.
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
No trolling.
Resources:
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
https://docs.docker.com/compose/environment-variables/set-environment-variables/
I really like using .env files, but you can hard code env vars in the compose file itself if you want.
Depends on the language the script is written in.
If it’s bash/sh then it’s usually just $VARIABLE
Environment variables isn't a concept of just docker, but general native app programming. So look into the docs of your language.
In my opinion you would want to create a Dockerfile to generate a Docker Image with your script and the ENVs in it. Remember though this script will run inside the docker container and the host will not see any modification. Could you explain in more details what this script would do?
right now its a javascript countdown till christmas.
Id like to pass the target year through a variable though.
Not trying to be an AH but that is not suitable for an ENV. Instead pass the year through the URL
I know it SHOULD be done that way, but i want the URL to be clean.
You need to learn how to write a Dockerfile (plenty of guides online). Not that a Dockerfile is different from a compose.yaml file (in development I use both).
The whole docker thing is rather new to me, thanks for the hints.
No problem! Let me know if you have questions. Docker was new to me a few years ago, now I work with it professionally.
Not a direct answer to your question, but I learned a bit by searching github for Dockerfile and docker-compose.yml
Thanks for the pointer.