From c1b69dc550c8e09995f4f28ad0fc81c6b9bf0d96 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Fri, 21 Feb 2025 23:51:10 +0100 Subject: [PATCH] Added the DockerCompose file source to the resources in the library target. --- Library/Resources/Files/Sources/DockerCompose | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Library/Resources/Files/Sources/DockerCompose diff --git a/Library/Resources/Files/Sources/DockerCompose b/Library/Resources/Files/Sources/DockerCompose new file mode 100644 index 0000000..6ea4b20 --- /dev/null +++ b/Library/Resources/Files/Sources/DockerCompose @@ -0,0 +1,7 @@ +services: + app: + build: + context: . + port: + - 3000:8080 + command: ["--hostname", "0.0.0.0", "--port", "8080"]