version: '3.8' services: postgres: image: postgres:17 container_name: mystic-postgres restart: unless-stopped environment: POSTGRES_PASSWORD: Nyhjew-didvot-zypsa7 volumes: - postgres_data:/var/lib/postgresql/data ports: - "5432:5432" mongodb: image: mongo:latest container_name: mystic-mongo restart: unless-stopped volumes: - mongo_data:/data/db ports: - "27017:27017" volumes: postgres_data: mongo_data: