问题 I am trying to create a separate docker-compose for production, currently I only have one compose file which I use for local development, but to make one for production, I don't know what attributes to remove aside volumes and ports my current dev compose file looks like this: version: '3' services: db: container_name: mariadb build: context: ./mariadb volumes: - ./mariadb/scripts:/docker-entrypoint-initdb.d - ./.data/db:/var/lib/mysql - ./logs/mariadb:/var/log/mysql environment: MYSQL_ROOT