How do I add PostGIS to my PostgreSQL setup using pure docker-compose
We have been using the following docker-compose.yml to account for PostgreSQL (another other redacted) dependencies. version: '3.5' services: postgres132: image: postgres:13.2 restart: always environment: POSTGRES_PASSWORD: 'user' POSTGRES_USER: 'pass' POSTGRES_DB: 'db' volumes: - ./data/postgres:/var/lib/postgresql/data ports: - 5432:5432 Now, I need to add