From 87ab9a237591af194ff4f1ba9b2af5e33adcb681 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Mon, 9 Mar 2026 21:38:43 +0700 Subject: [PATCH] feat: add base compose file for dev-tools service configuration --- examples/dev-tools/base.compose.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/dev-tools/base.compose.yml diff --git a/examples/dev-tools/base.compose.yml b/examples/dev-tools/base.compose.yml new file mode 100644 index 0000000..a449b8d --- /dev/null +++ b/examples/dev-tools/base.compose.yml @@ -0,0 +1,14 @@ +services: + dev-tools: + image: git.fastwaydata.com/esauflores/dev-tools:base + restart: no + environment: + - GITHUB_TOKEN=${GITHUB_TOKEN} + # MISE environment variables + # - MISE_DATA_DIR=/tools/mise + # - MISE_CONFIG_DIR=/tools/config + volumes: + - dev-tools-data:/tools + +volumes: + dev-tools-data: