diff options
| author | crupest <crupest@outlook.com> | 2022-11-22 14:24:57 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2022-11-22 14:24:57 +0800 | 
| commit | e6b0b7f80745fc6612e72b0ac443b515cd84edda (patch) | |
| tree | bea8703ab58087e62700b1ac472e20891dd226db /template/docker-compose.yaml.template | |
| parent | ddd33c31eb5351916da2c9323a0a2d2b93e59020 (diff) | |
| download | crupest-e6b0b7f80745fc6612e72b0ac443b515cd84edda.tar.gz crupest-e6b0b7f80745fc6612e72b0ac443b515cd84edda.tar.bz2 crupest-e6b0b7f80745fc6612e72b0ac443b515cd84edda.zip  | |
Fix custom docker image issue.
Diffstat (limited to 'template/docker-compose.yaml.template')
| -rw-r--r-- | template/docker-compose.yaml.template | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/template/docker-compose.yaml.template b/template/docker-compose.yaml.template index 6da2c3c..058a60c 100644 --- a/template/docker-compose.yaml.template +++ b/template/docker-compose.yaml.template @@ -37,7 +37,6 @@ services:        - internal    code-server: -    image: crupest/arch-code-server:latest      build:        context: ./docker/arch-code-server        dockerfile: Dockerfile @@ -48,6 +47,8 @@ services:          - CRUPEST_UID=$CRUPEST_UID          - CRUPEST_GID=$CRUPEST_GID          - USE_CHINA_MIRROR=$CRUPEST_IN_CHINA +      tags: +        - "crupest/arch-code-server:latest"      container_name: code-server      restart: on-failure:3      volumes: @@ -76,13 +77,14 @@ services:        - internal    auto-certbot: -    image: crupest/auto-certbot:latest      build:        context: ./docker/auto-certbot        dockerfile: Dockerfile        pull: true        args:          - CRUPEST_DOMAIN=$CRUPEST_DOMAIN +      tags: +        - "crupest/auto-certbot:latest"      container_name: auto-certbot      volumes:        - "./data/certbot/certs:/etc/letsencrypt"  | 
