My project uses a docker-compose.yml file and I’m ...
# general
s
My project uses a docker-compose.yml file and I’m working on wrapping docker with pants. I don’t see docker-compose referenced anywhere in the pants docs though - does pants support this feature? Or do I need to convert the docker-compose.yml to a BUILD file?
e
There is no support currently. The workflow right now is roughly
./pants package :: && docker compose ...
s
👍