docker
docker copied to clipboard
Update README.md
New command need new Line
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.