version: "3" services: backend: restart: always build: target: app # choose a stage to use ports: - 3000:3000 - 3001:3001 volumes: - ./sqlite.db:/app/sqlite.db env_file: - .env frontend: restart: always build: context: ../sorvor-front args: - VUE_APP_API_URL ports: - 3002:3000 minio: restart: always image: quay.io/minio/minio command: server /data --console-address ":9001" ports: - 9000:9000 - 9001:9001 volumes: - ./minio/data:/data env_file: - .env