From d295ee5475a0a7985a0c1490d5a04cbf73fdee6c Mon Sep 17 00:00:00 2001 From: Flor Guilini Date: Sun, 13 Apr 2025 19:53:07 +0200 Subject: [PATCH] fix mounts --- .gitignore | 1 + compose.yaml | 15 +++------------ 2 files changed, 4 insertions(+), 12 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/compose.yaml b/compose.yaml index 5bd83f7..c3d0264 100644 --- a/compose.yaml +++ b/compose.yaml @@ -10,18 +10,9 @@ services: ports: - "8080:8080" volumes: - - type: bind - source: ./static - target: /app/static - read_only: true - - type: bind - source: ./examples/templates/yampl - target: /app/templates - read_only: true - - type: bind - source: ./examples/toml/ - target: /app/toml - read_only: true + - './static:/app/static:z' + - './examples/templates/yampl:/app/templates:z' + - './examples/toml/:/app/toml:z' command: /app/toml/yampl.toml labels: -- 2.47.1