From e1c2e8fb2b58d334e9c57e6548af2ab7a16f8e90 Mon Sep 17 00:00:00 2001 From: KIMB-technologies Date: Tue, 8 Oct 2024 14:08:07 +0200 Subject: [PATCH] Typos --- .gitignore | 4 ++++ docker-compose.yml | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bdac0ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ + +/data/ + +.DS_Store \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index a786d30..2ce3ba9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,9 +15,9 @@ services: volumes: # all data is bind-mounted from ./data on the host into the containers # the folder *share* is shared with all agents, it can be used to pass large data via files - - /data/share/:/ums-agent/share/ + - ./data/share/:/ums-agenten/share/ # the folder *persist* is different for each container and can be used to store data permanently - - /data/persist-management/:/ums-agenten/persist/ + - ./data/persist-management/:/ums-agenten/persist/ agent_process_1: # this allow to do installs etc. in the docker image (a new image will be built on top of the provided one) @@ -33,8 +33,8 @@ services: # tell the agent where the management is accessible - MANAGEMENT=http://management volumes: - - /data/share/:/ums-agent/share/ - - /data/persist-process-1/:/ums-agenten/persist/ + - ./data/share/:/ums-agenten/share/ + - ./data/persist-process-1/:/ums-agenten/persist/ # this is for development (s.t. the changes in ./src/ are directly applied) - ./src/:/ums-agenten/project/src/:ro entrypoint: ... # TODO \ No newline at end of file