version: '3.8' services: voicevox_engine: image: voicevox/voicevox_engine:cpu-ubuntu20.04-latest ports: - "50021:50021" bot: build: context: . environment: - ENV=dev depends_on: - voicevox_engine ports: - "5000:5000" web: build: context: ./web ports: - "3000:3000" depends_on: - bot