diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-09-10 15:53:59 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-09-10 15:58:53 +0200 |
| commit | 61d74355a7b702917ae314c1c595b24fb8621a21 (patch) | |
| tree | 3b2b1f5e305ef9a9d6679a7bb106e218a99f3703 /docker-compose.override.yml | |
| parent | 8f978b683ab51e37f6bdda65f4dc40d11a5e38b7 (diff) | |
fix(docker): Default to public images for deployment
This change updates the Docker Compose configuration to default to the
available public images for OpenDC, in order to remove the requirement
for building OpenDC locally.
Diffstat (limited to 'docker-compose.override.yml')
| -rw-r--r-- | docker-compose.override.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker-compose.override.yml b/docker-compose.override.yml index b37068fc..6202e299 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -3,18 +3,21 @@ version: "3.8" # Docker Compose overrides for development environments services: frontend: + build: opendc-web/opendc-web-ui ports: - "8080:3000" environment: NEXT_PUBLIC_API_BASE_URL: http://localhost:8081 api: + build: opendc-web/opendc-web-api ports: - "8081:80" environment: SENTRY_ENVIRONMENT: "development" simulator: + build: . environment: SENTRY_ENVIRONMENT: "development" |
