From 1868311cd07fc484ebef122cb7aa9dc0f52b3384 Mon Sep 17 00:00:00 2001 From: tonya1 Date: Mon, 17 Jul 2023 14:52:01 -0700 Subject: [PATCH 1/4] Add autostart variable support --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 13483e9..b668d13 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -83,6 +83,8 @@ services: environment: - PATH=/gridappsd/bin:/gridappsd/lib:/gridappsd/services/fncsgossbridge/service:/usr/local/bin:/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin - LD_LIBRARY_PATH=/usr/local/lib64 + # Start the platform on boot + - AUTOSTART=0 # X11 application support--use same display as host, typically ":0" # - DISPLAY=${DISPLAY} # Debugging is only necessary if you intend to remote debug the GridAPPS-D process iself. From cb2342401dd5f54a95804fd6a163eb54d8e73cb0 Mon Sep 17 00:00:00 2001 From: Craig <3979063+craig8@users.noreply.github.com> Date: Thu, 25 Jan 2024 14:11:47 -0800 Subject: [PATCH 2/4] Update docker-compose.yml --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index b668d13..50f2a4e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -81,7 +81,7 @@ services: working_dir: /gridappsd environment: - - PATH=/gridappsd/bin:/gridappsd/lib:/gridappsd/services/fncsgossbridge/service:/usr/local/bin:/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin + - PATH=/home/gridappsd/.local/bin:/gridappsd/bin:/gridappsd/lib:/gridappsd/services/fncsgossbridge/service:/usr/local/bin:/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin - LD_LIBRARY_PATH=/usr/local/lib64 # Start the platform on boot - AUTOSTART=0 From 72183042330900df7c46e1248da1b49b8792b198 Mon Sep 17 00:00:00 2001 From: Craig <3979063+craig8@users.noreply.github.com> Date: Thu, 28 Mar 2024 10:14:15 -0700 Subject: [PATCH 3/4] Update docker_install_ubuntu.sh Update to the latest docker client. --- docker_install_ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_install_ubuntu.sh b/docker_install_ubuntu.sh index 6b2e238..ff7d8eb 100755 --- a/docker_install_ubuntu.sh +++ b/docker_install_ubuntu.sh @@ -2,7 +2,7 @@ # Environment variables you need to set so you don't have to edit the script below. DOCKER_CHANNEL=stable -DOCKER_COMPOSE_VERSION=1.18.0 +DOCKER_COMPOSE_VERSION=2.26.0 # Update the apt package index. sudo apt-get update From 4d7caae31c0177ce4797f97e5f974b19c4cdb795 Mon Sep 17 00:00:00 2001 From: afisher1 <4552674+afisher1@users.noreply.github.com> Date: Tue, 14 May 2024 12:20:20 -0700 Subject: [PATCH 4/4] Removing deprecated version key from docker-compose.yml --- docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 50f2a4e..46e974f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '2' - services: sample_app: image: gridappsd/sample_app${GRIDAPPSD_TAG}