From 82739a4b9c8fb85e6e86a5a1edafd9a0b9d7c96f Mon Sep 17 00:00:00 2001 From: Paul <203217+uniquePWD@users.noreply.github.com> Date: Sat, 3 Jan 2026 10:11:19 +0000 Subject: [PATCH] Update compose.yaml Tells microbin where to look for the env file and also points to the correct image. --- compose.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index fd45f71..12b4c9a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,11 +1,13 @@ services: microbin: - image: ghcr.io/dvdsk/microbin:latest + image: ghcr.io/yara-blue/microbin:latest restart: always ports: - "${MICROBIN_PORT}:8080" volumes: - ./microbin-data:/app/microbin_data + env_file: + - ./microbin-data/.env environment: MICROBIN_BASIC_AUTH_USERNAME: ${MICROBIN_BASIC_AUTH_USERNAME} MICROBIN_BASIC_AUTH_PASSWORD: ${MICROBIN_BASIC_AUTH_PASSWORD}