Docker Compose
April 24, 2020
I wanted to have three docker containers that were managed as one, being spun up and torn down together. These were a postgres database, pgsql postgres admin tool, and a spring boot back end (the one from https://drumcoder.co.uk/blog/2020/apr/24/docker-spring-boot/)
docker-compose.yml
Here's the docker-compose.yml file I used:
version: "3" services: todo-backend: image: …