diff options
author | crupest <crupest@outlook.com> | 2022-11-30 19:00:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-30 19:00:08 +0800 |
commit | 43e98101f1d9cf5845d1b6f189efffe3eb02f861 (patch) | |
tree | 4c2cad5c58d14dc22bd7af0a7ab6aaa1315e8ce5 /template | |
parent | 702e921591973bd0f06acddfaf35c304846bfe8b (diff) | |
download | crupest-43e98101f1d9cf5845d1b6f189efffe3eb02f861.tar.gz crupest-43e98101f1d9cf5845d1b6f189efffe3eb02f861.tar.bz2 crupest-43e98101f1d9cf5845d1b6f189efffe3eb02f861.zip |
A new way for blog.
Diffstat (limited to 'template')
-rw-r--r-- | template/docker-compose.yaml.template | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/template/docker-compose.yaml.template b/template/docker-compose.yaml.template index 8f7c621..f3ae948 100644 --- a/template/docker-compose.yaml.template +++ b/template/docker-compose.yaml.template @@ -27,6 +27,19 @@ services: networks: - code-server-network + crupest-blog: + pull_policy: build + build: + context: ./docker/crupest-blog + dockerfile: Dockerfile + pull: true + tags: + - "crupest/crupest-blog:latest" + container_name: crupest-blog + restart: on-failure:3 + volumes: + - "blog:/blog" + nginx: pull_policy: build build: @@ -45,6 +58,7 @@ services: - "./nginx-config:/etc/nginx/conf.d:ro" - "./data/certbot/certs:/etc/letsencrypt:ro" - "./data/certbot/webroot:/srv/acme:ro" + - "blog:/srv/blog:ro" networks: - timeline-network - code-server-network @@ -148,3 +162,6 @@ networks: code-server-network: auto-certbot-network: crupest-api-network: + +volumes: + blog-public:
\ No newline at end of file |