docker icon indicating copy to clipboard operation
docker copied to clipboard

Update README.md

Open feyroozecode opened this issue 1 year ago • 1 comments

New command need new Line

feyroozecode avatar Jun 09 '24 14:06 feyroozecode

New command need new Line

it doesn't, though.

AKAUNTING_SETUP=true docker-compose up -d

means AKAUNTING_SETUP is set to true for the command that follows on the same line only.

AKAUNTING_SETUP=true
docker-compose up -d

means AKAUNTING_SETUP is set to true, and will stay set in the environment of the shell session, for docker-compose up -d and any command called later.

The README states that

Please never use AKAUNTING_SETUP=true environment variable again after the first time use.

which is precisely what the original command does.

r900 avatar Apr 25 '25 13:04 r900