services: backend: build: context: ./backend dockerfile: Dockerfile env_file: - ./.env environment: APP_HOST: 0.0.0.0 APP_PORT: 8105 volumes: - ./data:/app/data ports: - "8105:8105" restart: unless-stopped frontend: build: context: ./frontend dockerfile: Dockerfile ports: - "8080:80" restart: unless-stopped depends_on: - backend