From f08a047307f0c381d0f4331283226a243ee3059d Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 25 Apr 2021 20:10:35 +0200 Subject: build: Adjust docker-compose configuration to flat structure This change adjusts the docker-compose configuration to support the re-organized project structure. --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 45a961fe..982f2ed8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.8" services: frontend: build: - context: ./frontend + context: opendc-web/opendc-web-ui args: OPENDC_OAUTH_CLIENT_ID: ${OPENDC_OAUTH_CLIENT_ID} OPENDC_FRONTEND_SENTRY_DSN: ${OPENDC_FRONTEND_SENTRY_DSN} @@ -12,7 +12,7 @@ services: - backend api: - build: ./api + build: opendc-web/opendc-web-api image: api restart: on-failure networks: @@ -33,7 +33,7 @@ services: - SENTRY_ENVIRONMENT simulator: - build: ./simulator + build: . image: simulator restart: on-failure networks: -- cgit v1.2.3