CounterpartyXCP / Documentation

Official Documentation of the Counterparty Project
http://counterparty.io
MIT License
54 stars 58 forks source link

docker-compose -> docker compose #192

Closed mattmarcello closed 5 months ago

adamkrellenstein commented 5 months ago

I feel like we should also include a note saying (or at least suggesting) that apt install docker-compose won't work (I'm not sure why it doesn't?) If I were on Ubuntu that's the first thing I'd do to install Docker Compose.

adamkrellenstein commented 5 months ago

bump @mattmarcello

mattmarcello commented 5 months ago

This is already captured in the included instruction to:

Install Docker Compose as described here https://docs.docker.com/compose/install/

which advises against installing Compose standalone.

The reason it doesn't work is because compose v1 is written in python, deprecated, and no guarantees are made that it will behave the same as V2 ( written in Go). We uncovered a scenario wherein it was interpreting variables as string literals in the compose file rather than interpolating their respective values.