services: chocoadmin: build: context: . dockerfile: Dockerfile image: chocoadmin:latest container_name: chocoadmin expose: - "3000" env_file: - ${ENV_FILE:-.env.production} environment: NODE_ENV: production APP_ENV: production PORT: 3000 HOSTNAME: 0.0.0.0 TZ: Asia/Seoul networks: - proxy-network restart: unless-stopped logging: driver: json-file options: max-size: "10m" max-file: "3" networks: proxy-network: external: true