services: initservice: container_name: initservice build: context: . dockerfile: DockerApiServices/InitServiceApi/Dockerfile authservice: container_name: authservice build: context: . dockerfile: DockerApiServices/AuthServiceApi/Dockerfile ports: - "8081:8888" depends_on: - initservice networks: - wag-network validationservice: container_name: validationservice build: context: . dockerfile: DockerApiServices/ValidationServiceApi/Dockerfile ports: - "8082:8888" depends_on: - initservice networks: - wag-network eventservice: container_name: eventservice build: context: . dockerfile: DockerApiServices/EventServiceApi/Dockerfile ports: - "8083:8888" depends_on: - initservice networks: - wag-network networks: wag-network: name: wag-network external: true