From 72a87f1de8d6ce942aa5fa6dc04f7242cf6adfd7 Mon Sep 17 00:00:00 2001 From: JhumanJ Date: Tue, 27 May 2025 18:17:18 +0200 Subject: [PATCH] Revert docker-compose.yml to use pre-built images - switches back from local builds to published Docker images --- docker-compose.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 39194bdf..c1ca2438 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,7 @@ --- services: api: &api-environment - build: - context: . - dockerfile: docker/Dockerfile.api - args: - APP_VERSION: "local-test-1.0.0" + image: jhumanj/opnform-api:latest container_name: opnform-api volumes: &api-environment-volumes - opnform_storage:/usr/share/nginx/html/storage:rw @@ -66,11 +62,7 @@ services: start_period: 70s # Allow time for first scheduled run and cache write ui: - build: - context: . - dockerfile: docker/Dockerfile.client - args: - APP_VERSION: "local-test-1.0.0" + image: jhumanj/opnform-client:latest container_name: opnform-client env_file: - ./client/.env