1services: 2 postgres: 3 image: postgres:18 4 ports: 5 - 5432:5432 6 volumes: 7 - postgres_data:/var/lib/postgresql 8 environment: 9 POSTGRES_USER: cherries 10 POSTGRES_PASSWORD: cherries 11 POSTGRES_DB: cherries 12 13volumes: 14 postgres_data: