Specify the env file docker compose uses - Stack Overflow (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (Stack Overflow) (https://stackoverflow.com/opensearch.xml) (https://stackoverflow.com/questions/40525230/specify-the-env-file-docker-compose-uses) (Feed for question 'Specify the env file docker compose uses') (https://stackoverflow.com/feeds/question/40525230) (site logo) Join Stack Overflow By clicking “Sign up”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Sign up with Google Sign up with GitHub OR Email Password (8+ characters (at least 1 letter & 1 number)) Sign up Already have an account? (https://stackoverflow.com/users/login) Log in Skip to main content (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.co/) About Products (https://stackoverflow.co/teams/) For Teams (Search…) (Click to show search) (https://stackoverflow.com/users/login?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f40525230%2fspecify-the-env-file-docker-compose-uses) Log in (https://stackoverflow.com/users/signup?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f40525230%2fspecify-the-env-file-docker-compose-uses) Sign up Let's set up your homepage Select a few topics you're interested in: python javascript c# reactjs java android html flutter c++ node.js typescript css r php angular next.js spring-boot machine-learning sql excel ios azure docker Or search from our full list: (Search) Next You’ll be prompted to create an account to view your personalized homepage. (https://stackoverflow.com/) Home (https://stackoverflow.com/questions) Questions (https://stackoverflow.ai/) AI Assist Labs (https://stackoverflow.com/tags) Tags (https://stackoverflow.com/beta/challenges) Challenges (https://chat.stackoverflow.com/rooms/259507/stack-overflow-lobby) Chat (https://stackoverflow.blog/contributed?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=so-blog&utm_content=experiment-articles) Articles (https://stackoverflow.com/users) Users (https://stackoverflow.com/jobs?source=so-left-nav) Jobs (https://stackoverflow.com/jobs/companies?so_medium=stackoverflow&so_source=SiteNav) Companies Collectives Communities for your favorite technologies. (https://stackoverflow.com/collectives-all) Explore all Collectives Teams Ask questions, find answers and collaborate at work with Stack Overflow for Teams. (https://stackoverflowteams.com/teams/create/free/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Try Teams for free (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Explore Teams (Illustration of upvote icon after it is clicked) Hang on, you can't upvote just yet. You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. (https://stackoverflow.com/help/whats-reputation) What's reputation and how do I get it? Instead, you can save this post to reference later. Save this post for later Not now (Illustration of upvote icon after it is clicked) Thanks for your vote! You now have 5 free votes weekly. Free votescount toward the total vote score does not give reputation to the author Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges, (https://stackoverflow.com/help/whats-reputation) earn reputation . Got it! Go to help center to learn more (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (https://stackoverflow.com/questions/40525230/specify-the-env-file-docker-compose-uses) Specify the env file docker compose uses (https://stackoverflow.com/questions/ask) Ask Question (2016-11-10 10:25:41Z) Asked 8 years, 10 months ago Modified (https://stackoverflow.com/questions/40525230/specify-the-env-file-docker-compose-uses?lastactivity) (2021-05-12 00:29:04Z) 4 years, 4 months ago (Viewed 46,982 times) Viewed 47k times This question shows research effort; it is useful and clear 37 (This question does not show any research effort; it is unclear or not useful) Save this question. (https://stackoverflow.com/posts/40525230/timeline) Show activity on this post. Is it possible to specify the env file that docker compose uses for variable substitution? Currently it defaults to ".env" but I have different flavours of compose files which should have different envs. (https://stackoverflow.com/questions/tagged/docker) (show questions tagged 'docker') docker (https://stackoverflow.com/questions/tagged/docker-compose) (show questions tagged 'docker-compose') docker-compose (https://stackoverflow.com/q/40525230) (Short permalink to this question) Share (https://stackoverflow.com/posts/40525230/edit) Improve this question Follow Follow this question to receive notifications asked (2016-11-10 10:25:41Z) Nov 10, 2016 at 10:25 (https://stackoverflow.com/users/3231690/zuriar) (Zuriar's user avatar) (https://stackoverflow.com/users/3231690/zuriar) Zuriar Zuriar (reputation score 11,876) 11.9k (23 gold badges) 23 23 gold badges (64 silver badges) 64 64 silver badges (98 bronze badges) 98 98 bronze badges 1 (number of 'useful comment' votes received) 2 I found this (https://docs.docker.com/compose/environment-variables/) docs.docker.com/compose/environment-variables but this appears to need env_file for each container.. Is it possible to set it globally for the whole docker-compose file thus overriding the default .env? Zuriar – (https://stackoverflow.com/users/3231690/zuriar) (11,876 reputation) Zuriar 2016-11-10 10:31:35 +00:00 Commented (2016-11-10 10:31:35Z, License: CC BY-SA 3.0) Nov 10, 2016 at 10:31 (Use comments to ask for more information or suggest improvements. Avoid answering questions in comments.) Add a comment | (Expand to show all comments on this post) 3 Answers 3 Sorted by: (https://stackoverflow.com/questions/40525230/specify-the-env-file-docker-compose-uses?answertab=scoredesc#tab-top) Reset to default (scoredesc) Highest score (default) (trending) Trending (recent votes count more) (modifieddesc) Date modified (newest first) (createdasc) Date created (oldest first) This answer is useful 25 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/40544395/timeline) Show activity on this post. You can use inheritance for this. If you have one "base" service where you set up the environment, all of your other services can inherit from that. Example: version: "2" services: base: env_file: - my_env.txt web: extends: service: base image: foo database: extends: service: base image: foo-db The above example has everything in the same file, but you can also split this up into multiple files, where the base service would reside in a base.yaml file. You just need to add file: base.yaml to the extends section. Please see (https://docs.docker.com/compose/extends/#extending-services) the documentation here . I use this approach for setting the proxy variables for all containers. I have a proxy.yaml file that defines a proxy-app service that picks up the proxy environment variables from the shell. All of my real services extend the proxy-app service and thus inherit the environment settings from that service. (https://stackoverflow.com/a/40544395) (Short permalink to this answer) Share (https://stackoverflow.com/posts/40544395/edit) Improve this answer Follow Follow this answer to receive notifications answered (2016-11-11 09:00:23Z) Nov 11, 2016 at 9:00 (https://stackoverflow.com/users/1228454/nwinkler) (nwinkler's user avatar) (https://stackoverflow.com/users/1228454/nwinkler) nwinkler nwinkler (reputation score 54,851) 54.9k (23 gold badges) 23 23 gold badges (166 silver badges) 166 166 silver badges (170 bronze badges) 170 170 bronze badges 3 Comments Add a comment (https://stackoverflow.com/users/1997286/tobi) Tobi (https://stackoverflow.com/users/1997286/tobi) Tobi (2020-04-07T13:36:56.193Z) Over a year ago Attention: Will not work in docker compose v3 and up 2020-04-07T13:36:56.193Z+00:00 19 Reply (https://stackoverflow.com/users/6472304/luke-davis) Luke Davis (https://stackoverflow.com/users/6472304/luke-davis) Luke Davis (2021-04-08T23:23:35.157Z) Over a year ago This will not work on Docker Compose v3+ because each service must have a defined image or a build context. Documented (https://docs.docker.com/compose/compose-file/compose-file-v3/#build) here and discussed (https://stackoverflow.com/questions/63766931/service-notebook-has-neither-an-image-nor-a-build-context-specified-at-least-on) here 2021-04-08T23:23:35.157Z+00:00 3 Reply (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (2022-04-20T16:59:01.827Z) Over a year ago This does not address the question, which is how to specify a different .env file, but instead provides a workaround, which is not useful for the vast majority of viewers who are looking for a solution to the question as asked for a variety of reasons 2022-04-20T16:59:01.827Z+00:00 2 Reply Add a comment This answer is useful 20 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/67495905/timeline) Show activity on this post. The --env-file command-line argument and the env_file docker-compose.yml variable specify the env file to use for the container, not for the container build. To set a different file (e.g. alt.env ) for the build itself, use this: env $(cat alt.env) docker-compose up --build (https://stackoverflow.com/a/67495905) (Short permalink to this answer) Share (https://stackoverflow.com/posts/67495905/edit) Improve this answer Follow Follow this answer to receive notifications answered (2021-05-12 00:29:04Z) May 12, 2021 at 0:29 (https://stackoverflow.com/users/3462615/peter-kionga-kamau) (Peter Kionga-Kamau's user avatar) (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau Peter Kionga-Kamau (reputation score) 7,186 (2 gold badges) 2 2 gold badges (22 silver badges) 22 22 silver badges (16 bronze badges) 16 16 bronze badges 5 Comments Add a comment (https://stackoverflow.com/users/1454536/parity3) parity3 (https://stackoverflow.com/users/1454536/parity3) parity3 (2021-10-29T20:02:59.897Z) Over a year ago I'm not seeing the distinction about --env-file only applying to service deploy and not build, mentioned anywhere in the documentation: (https://docs.docker.com/compose/environment-variables/#using-the---env-file--option) docs.docker.com/compose/environment-variables/… This seems like really odd behavior. But after digging some more, the use of the env-file has been broken on v2 for years now: (https://github.com/docker/compose/issues/8515) github.com/docker/compose/issues/8515 2021-10-29T20:02:59.897Z+00:00 3 Reply (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (2021-10-31T10:11:21.817Z) Over a year ago Correct, it is not a documented behavior. 2021-10-31T10:11:21.817Z+00:00 2 Reply (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (2024-07-21T15:09:54.073Z) Over a year ago @PeterKionga-Kamau This behaviour is not specific to Docker, it's specific to the shell. More specifically it's how the env command works. So, if you want to read up on it, then checkout the man pages for the env command. You can do that locally by running man env . 2024-07-21T15:09:54.073Z+00:00 0 Reply (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (2024-07-22T22:31:39.077Z) Over a year ago (Edited 4 times) @GustavStreicher That is not what I am talking about. I am indicating that there is a distinction between build and runtime environments 2024-07-22T22:31:39.077Z+00:00 1 Reply (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (2024-07-29T21:58:15.477Z) Over a year ago @PeterKionga-Kamau I see. 2024-07-29T21:58:15.477Z+00:00 0 Reply Add a comment This answer is useful 7 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/51224066/timeline) Show activity on this post. According to the (https://docs.docker.com/compose/env-file/) documentation , it's now possible to load an environment file (contrary to a per-service file), docker-compose will then export the env variables defined in this env file prior to starting any service, they can then be used in the docker-compose.yml config file itself: version: "3.7" services: node: environment: APP_ENV: "${APP_ENV}" NODE_ENV: "${NODE_ENV}" ports: - "${HOST_EXPOSED_NODEJS_DEBUG_PORT}:9229" volumes: - type: bind source: ./project target: /var/www/project read_only: false Since (https://github.com/docker/compose/issues/6170) docker-compose 1.25 it's also possible to specify a custom .env file with the (https://docs.docker.com/compose/environment-variables/) --env-file flag (unfortunately it's currently not possible to specify (https://github.com/docker/compose/issues/7847) multiple .env files with the --env-file flag ) (https://stackoverflow.com/a/51224066) (Short permalink to this answer) Share (https://stackoverflow.com/posts/51224066/edit) Improve this answer Follow Follow this answer to receive notifications (https://stackoverflow.com/posts/51224066/revisions) (show all edits to this post) edited (2020-11-26 15:11:50Z) Nov 26, 2020 at 15:11 (https://stackoverflow.com/users/6853836/madforfunandhappy) (MADforFUNandHappy's user avatar) (https://stackoverflow.com/users/6853836/madforfunandhappy) MADforFUNandHappy (reputation score) 567 (7 silver badges) 7 7 silver badges (25 bronze badges) 25 25 bronze badges answered (2018-07-07 14:19:53Z) Jul 7, 2018 at 14:19 (https://stackoverflow.com/users/218182/harel-moshe) (Harel Moshe's user avatar) (https://stackoverflow.com/users/218182/harel-moshe) Harel Moshe Harel Moshe (reputation score) 454 (7 silver badges) 7 7 silver badges (21 bronze badges) 21 21 bronze badges 7 Comments Add a comment (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (2022-04-20T17:00:39.653Z) Over a year ago (Edited 1 time) This is misleading. --env-file is for specifying environment variables for the container, not for specifying values to substitute in docker-compose.yml. 2022-04-20T17:00:39.653Z+00:00 7 Reply (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (2024-07-21T15:02:57.933Z) Over a year ago (Edited 1 time) @PeterKionga-Kamau Nope. If you are using the docker run command directly, then the --env-file flag sets the environment for the container you are directly spinning up. If you are using the docker compose command, then the --env-file flag sets the environment for the pre-parsing step on the compose.yml file. 2024-07-21T15:02:57.933Z+00:00 0 Reply (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (https://stackoverflow.com/users/3462615/peter-kionga-kamau) Peter Kionga-Kamau (2024-07-22T22:37:27.113Z) Over a year ago (Edited 2 times) @GustavStreicher Not relevant - Docker compose specifically does NOT use docker run , it is a different thing altogether. Please refer to the docker compose (https://docs.docker.com/compose/) documentation . 2024-07-22T22:37:27.113Z+00:00 0 Reply (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (2024-07-29T21:55:02.863Z) Over a year ago @PeterKionga-Kamau I'm literally referring to the use of docker compose and docker run as separate commands in my previous comment. So, I'm not sure what you are disagreeing with. When using the docker compose command, the --env-file means one thing. When using the docker run command, the --env-file means something else. That's exactly what my previous comment says. 2024-07-29T21:55:02.863Z+00:00 0 Reply (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (https://stackoverflow.com/users/9090840/gustav-streicher) Gustav Streicher (2024-07-29T22:02:59.247Z) Over a year ago @PeterKionga-Kamau My comment is relevant because I'm pointing out that your expected behaviour only works if you are using the docker run command. If you are using the docker compose command then your expected behaviour no longer holds, and then I explain what actually happens. 2024-07-29T22:02:59.247Z+00:00 1 Reply Add a comment | Show 2 more comments Your Answer Draft saved Draft discarded Sign up or (https://stackoverflow.com/users/login?ssrc=question_page&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f40525230%2fspecify-the-env-file-docker-compose-uses%23new-answer) log in Sign up using Google Sign up using Email and Password Submit Post as a guest Name Email Required, but never shown Post as a guest Name () () Email Required, but never shown () () Post Your Answer Discard By clicking “Post Your Answer”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Start asking to get answers Find the answer to your question by asking. (https://stackoverflow.com/questions/ask) Ask question Explore related questions (https://stackoverflow.com/questions/tagged/docker) (show questions tagged 'docker') docker (https://stackoverflow.com/questions/tagged/docker-compose) (show questions tagged 'docker-compose') docker-compose See similar questions with these tags. The Overflow Blog (https://stackoverflow.blog/2025/09/23/democratizing-your-data-access-with-ai-agents/?cb=1) Democratizing your data access with AI agents (https://stackoverflow.blog/2025/09/24/the-history-and-future-of-software-development-part-1/?cb=1) The history and future of software development (part 1) Featured on Meta (Meta Stack Exchange) (https://meta.stackexchange.com/questions/412667/spevacus-has-joined-us-as-a-community-manager?cb=1) Spevacus has joined us as a Community Manager (Meta Stack Exchange) (https://meta.stackexchange.com/questions/412705/introducing-a-new-proactive-anti-spam-measure?cb=1) Introducing a new proactive anti-spam measure (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/434969/new-and-improved-coding-challenges?cb=1) New and improved coding challenges (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/434861/new-comment-ui-experiment-graduation?cb=1) New comment UI experiment graduation (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/421831/policy-generative-ai-e-g-chatgpt-is-banned?cb=1) Policy: Generative AI (e.g., ChatGPT) is banned (https://chat.stackoverflow.com/) (12 users active in 14 rooms the last 60 minutes) 12 people chatting Linked (https://stackoverflow.com/questions/63766931/service-notebook-has-neither-an-image-nor-a-build-context-specified-at-least-on?lq=1) (Question score (upvotes - downvotes)) 7 (https://stackoverflow.com/questions/63766931/service-notebook-has-neither-an-image-nor-a-build-context-specified-at-least-on?noredirect=1&lq=1) Service notebook has neither an image nor a build context specified. At least one must be provided Related (https://stackoverflow.com/questions/37982317/docker-compose-doesnt-recognize-env-file?rq=3) (Question score (upvotes - downvotes)) 7 (https://stackoverflow.com/questions/37982317/docker-compose-doesnt-recognize-env-file?rq=3) Docker compose doesn't recognize 'env_file' (https://stackoverflow.com/questions/39076871/not-able-to-use-env-file-with-docker-compose?rq=3) (Question score (upvotes - downvotes)) 1 (https://stackoverflow.com/questions/39076871/not-able-to-use-env-file-with-docker-compose?rq=3) Not able to use .env file with docker-compose (https://stackoverflow.com/questions/39542905/docker-compose-not-recognizing-env-file-file-location-and-still-tries-to-use-th?rq=3) (Question score (upvotes - downvotes)) 16 (https://stackoverflow.com/questions/39542905/docker-compose-not-recognizing-env-file-file-location-and-still-tries-to-use-th?rq=3) docker-compose not recognizing env_file file/location, and still tries to use the default .env (https://stackoverflow.com/questions/43850326/docker-compose-change-env-variables?rq=3) (Question score (upvotes - downvotes)) 22 (https://stackoverflow.com/questions/43850326/docker-compose-change-env-variables?rq=3) Docker Compose: Change env variables (https://stackoverflow.com/questions/46455610/usage-of-env-variable-in-docker-compose-run-command?rq=3) (Question score (upvotes - downvotes)) 3 (https://stackoverflow.com/questions/46455610/usage-of-env-variable-in-docker-compose-run-command?rq=3) Usage of env variable in docker compose run command (https://stackoverflow.com/questions/49048931/docker-compose-env-var-not-working?rq=3) (Question score (upvotes - downvotes)) 2 (https://stackoverflow.com/questions/49048931/docker-compose-env-var-not-working?rq=3) Docker-compose env var not working (https://stackoverflow.com/questions/59889538/how-to-specify-which-env-file-is-used-in-docker-compose-via-command-line?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/59889538/how-to-specify-which-env-file-is-used-in-docker-compose-via-command-line?rq=3) How to specify which env_file is used in docker-compose via command line (https://stackoverflow.com/questions/66280814/docker-compose-use-env-file-variables-in-the-command?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/66280814/docker-compose-use-env-file-variables-in-the-command?rq=3) Docker-compose use env_file variables in the command (https://stackoverflow.com/questions/69622575/docker-compose-env-file-not-read?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/69622575/docker-compose-env-file-not-read?rq=3) Docker Compose .env File Not Read (https://stackoverflow.com/questions/71740033/docker-compose-ignores-env-file-when-using-compose-file?rq=3) (Question score (upvotes - downvotes)) 1 (https://stackoverflow.com/questions/71740033/docker-compose-ignores-env-file-when-using-compose-file?rq=3) docker-compose ignores .env file when using `COMPOSE_FILE` (https://stackexchange.com/questions?tab=hot) Hot Network Questions (Travel Stack Exchange) (https://travel.stackexchange.com/questions/200285/traveling-by-car-on-train-in-germany) Traveling by car on train in Germany (Bicycles Stack Exchange) (https://bicycles.stackexchange.com/questions/97526/identify-this-hub) Identify this hub (Role-playing Games Stack Exchange) (https://rpg.stackexchange.com/questions/216636/how-to-handle-a-warlock-with-aspect-of-the-moon-and-visions-of-distant-realms) How to handle a warlock with Aspect of the Moon and Visions of Distant Realms? (Travel Stack Exchange) (https://travel.stackexchange.com/questions/200297/which-driving-direction-syncs-with-quebec-s-and-maritime-canada-s-autumn-leaf-co) Which driving direction syncs with Quebec’s and Maritime Canada’s autumn leaf colors? (Puzzling Stack Exchange) (https://puzzling.stackexchange.com/questions/133355/another-slitherlink-next-step) Another Slitherlink Next Step (Mathematica Stack Exchange) (https://mathematica.stackexchange.com/questions/315480/using-switch-to-return-a-value-depending-on-the-sign-of-a-real-number) Using Switch to return a value depending on the sign of a real number (Quantitative Finance Stack Exchange) (https://quant.stackexchange.com/questions/84048/can-the-price-of-a-gap-option-be-negative) Can the price of a gap option be negative? (Academia Stack Exchange) (https://academia.stackexchange.com/questions/221448/what-happens-to-academic-grants-if-you-leave-for-industry) What happens to academic grants if you leave for industry? (Physics Stack Exchange) (https://physics.stackexchange.com/questions/859907/what-does-it-mean-for-work-to-be-done-on-a-system) What does it mean for work to be done ON a system? (Academia Stack Exchange) (https://academia.stackexchange.com/questions/221430/do-academics-mind-if-someone-outside-their-field-critiques-their-work) Do academics mind if someone outside their field critiques their work? (Code Golf Stack Exchange) (https://codegolf.stackexchange.com/questions/283848/verify-a-chinese-id-number) Verify a Chinese ID Number (Unix & Linux Stack Exchange) (https://unix.stackexchange.com/questions/799976/what-is-the-exact-meaning-of-olcaccess-1to-dn-exact-by-read) What is the exact meaning of olcAccess: {1}to dn.exact="" by * read (Database Administrators Stack Exchange) (https://dba.stackexchange.com/questions/347849/best-solution-to-prevent-loop-between-tables-for-granular-relations) Best solution to prevent loop between tables for granular relations (TeX - LaTeX Stack Exchange) (https://tex.stackexchange.com/questions/751609/how-much-does-tagging-affect-my-compilation) How much does tagging affect my compilation? (TeX - LaTeX Stack Exchange) (https://tex.stackexchange.com/questions/751630/points-with-node-label-fails-to-create-closed-region-with-cycle-and-fill-it) points with "node label" fails to create closed region with cycle and fill it (Puzzling Stack Exchange) (https://puzzling.stackexchange.com/questions/133349/a-classic-invariants-problem-modified) a classic invariants problem, modified (Science Fiction & Fantasy Stack Exchange) (https://scifi.stackexchange.com/questions/299367/time-traveler-named-tom-john-forgets-device-penelope-weschler-machine-harvests) Time traveler named Tom/John forgets device, Penelope Weschler, machine harvests Earth's spin (Science Fiction & Fantasy Stack Exchange) (https://scifi.stackexchange.com/questions/299375/sf-short-story-written-perhaps-30-40-years-ago-about-female-infected-creatures) SF short-story written perhaps 30 - 40 years ago about female-infected creatures who are called males (Cross Validated) (https://stats.stackexchange.com/questions/670430/what-is-the-exact-method-of-calculating-a-number-needed-to-treat-nnt-in-a-meta) What is the exact method of calculating a number needed to treat (NNT) in a meta-analysis? (Literature Stack Exchange) (https://literature.stackexchange.com/questions/29799/what-does-it-mean-for-a-museum-exhibit-not-to-have-a-soviet-anniversary) What does it mean for a museum exhibit "not to have a Soviet anniversary"? (MathOverflow) (https://mathoverflow.net/questions/500720/list-of-crowdsourced-math-projects-actively-seeking-participants) List of crowdsourced math projects actively seeking participants (Music: Practice & Theory Stack Exchange) (https://music.stackexchange.com/questions/141472/whats-the-cents-value-of-these-smufl-accidentals) What's the cents value of these SMuFL accidentals? (Science Fiction & Fantasy Stack Exchange) (https://scifi.stackexchange.com/questions/299373/woman-from-bubble-city-where-all-men-are-infertile-meets-fertile-man-from-anothe) Woman from bubble city where all men are infertile meets fertile man from another city (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/755979/how-to-design-a-circuit-that-outputs-the-binary-position-of-the-3rd-set-bit-from) How to design a circuit that outputs the binary position of the 3rd set bit from the right in an 8-bit input? (https://stackoverflow.com/feeds/question/40525230) (Feed of this question and its answers) Question feed Subscribe to RSS Question feed To subscribe to this RSS feed, copy and paste this URL into your RSS reader. (https://stackoverflow.com/feeds/question/40525230) () lang-yaml Why are you flagging this comment? (45) Probable spam. This comment promotes a product, service or website while (https://stackoverflow.com/help/promotion) failing to disclose the author's affiliation . (20) Unfriendly or contains harassment/bigotry/abuse. This comment is unkind, insulting or attacks another person or group. Learn more in our (https://stackoverflow.com/conduct/abusive-behavior) Code of Conduct . (39) Not needed. This comment is not relevant to the post. (19) Something else. A problem not listed above. Try to be as specific as possible. Flag comment Cancel You have 0 flags left today (https://stackoverflow.com/) (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.com/questions) Questions (https://stackoverflow.com/help) Help (https://chat.stackoverflow.com/?tab=explore) Chat (https://stackoverflow.co/) Products (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=teams) Teams (https://stackoverflow.co/advertising/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=advertising) Advertising (https://stackoverflow.co/advertising/employer-branding/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=talent) Talent (https://stackoverflow.co/) Company (https://stackoverflow.co/) About (https://stackoverflow.co/company/press/) Press (https://stackoverflow.co/company/work-here/) Work Here (https://stackoverflow.com/legal) Legal (https://stackoverflow.com/legal/privacy-policy) Privacy Policy (https://stackoverflow.com/legal/terms-of-service/public) Terms of Service (https://stackoverflow.com/contact) Contact Us Your Privacy Choices (https://policies.stackoverflow.co/stack-overflow/cookie-policy) Cookie Policy (https://stackexchange.com/) Stack Exchange Network (https://stackexchange.com/sites#technology) Technology (https://stackexchange.com/sites#culturerecreation) Culture & recreation (https://stackexchange.com/sites#lifearts) Life & arts (https://stackexchange.com/sites#science) Science (https://stackexchange.com/sites#professional) Professional (https://stackexchange.com/sites#business) Business (https://api.stackexchange.com/) API (https://data.stackexchange.com/) Data (https://stackoverflow.blog/?blb=1) Blog (https://www.facebook.com/officialstackoverflow/) Facebook (https://twitter.com/stackoverflow) Twitter (https://linkedin.com/company/stack-overflow) LinkedIn (https://www.instagram.com/thestackoverflow) Instagram Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under (https://stackoverflow.com/help/licensing) CC BY-SA . rev 2025.9.25.34480 By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our (https://policies.stackoverflow.co/stack-overflow/cookie-policy/) Cookie Policy . Accept all cookies Necessary cookies only Customize settings