I’n trying to start containers from IntelIDEA -> docker-compose like this
and podman duplicate containers but in differend environments one- ‘docker’ another podman.How fix it? i need only 1 container
version: "3.9"
services:
postgres:
image: postgres:13.3
environment:
PGPORT: 5433
POSTGRES_DB: "postgres"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- ./src/main/resources/db/migration/V1__project.sql:/docker-entrypoint-initdb.d/init.sql
expose:
- "5433"
ports:
- "5433:5433"