version: "3.7" services: bot: image: node:16.9.0-alpine command: sh -c "npm install && node ." restart: unless-stopped depends_on: - "mysql" working_dir: /app volumes: - ./:/app mysql: image: mysql:8.0 ports: - 3306:3306 volumes: - minzbot-db:/var/lib/mysql environment: MYSQL_ROOT_PASSWORD: ${DB_ROOTPW} MYSQL_DATABASE: ${DB_DATABASE} volumes: minzbot-db: