version: "3.9" services: postgres: image: postgres:16-alpine environment: POSTGRES_USER: acef POSTGRES_PASSWORD: acef POSTGRES_DB: acef ports: - "5432:5432" volumes: - postgres_data:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U acef"] interval: 5s timeout: 5s retries: 5 adminer: image: adminer ports: - "8080:8080" depends_on: - postgres volumes: postgres_data: