I have a development environment I’m dockerizing and I would like the ability to livereload my changes without having to rebuild docker images. I’m using docker compose because redis...
My docker compose file has three containers, web, nginx, and postgres. Postgres looks like this: postgres: container_name: postgres restart: always image: postgres:latest volumes: - ./database:/var/lib/postgresql ports: - 5432:5432 My...