diff options
author | crupest <crupest@outlook.com> | 2022-11-23 14:31:02 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-23 14:31:02 +0800 |
commit | 9bad4960ac956ad4bc048309aa388d8b3965f3ab (patch) | |
tree | 84644c9548bbcbd4afdcddd2600a1e0df515282c | |
parent | 6272b219ba4fb29dd542d10cb846a0dbb6edf4ea (diff) | |
download | crupest-9bad4960ac956ad4bc048309aa388d8b3965f3ab.tar.gz crupest-9bad4960ac956ad4bc048309aa388d8b3965f3ab.tar.bz2 crupest-9bad4960ac956ad4bc048309aa388d8b3965f3ab.zip |
Fix compose template bug.
-rw-r--r-- | template/docker-compose.yaml.template | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/docker-compose.yaml.template b/template/docker-compose.yaml.template index 5982e62..b8befce 100644 --- a/template/docker-compose.yaml.template +++ b/template/docker-compose.yaml.template @@ -106,7 +106,8 @@ services: context: ./docker/auto-backup dockerfile: Dockerfile pull: true - args: CRUPEST_AUTO_BACKUP_BUCKET_NAME=${CRUPEST_AUTO_BACKUP_BUCKET_NAME} + args: + - CRUPEST_AUTO_BACKUP_BUCKET_NAME=${CRUPEST_AUTO_BACKUP_BUCKET_NAME} tags: - "crupest/auto-backup:latest" container_name: auto-backup |