diff options
| author | crupest <crupest@outlook.com> | 2023-07-17 23:10:26 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2023-07-17 23:10:26 +0800 | 
| commit | bc845e54167018065ffc11c9df64711344625f0c (patch) | |
| tree | ac08c2d086eb54b3d6be4a7eba27ea4d9a24e603 | |
| parent | 2f0d8f656ec29be675a195aca9a85d24b9842770 (diff) | |
| download | crupest-bc845e54167018065ffc11c9df64711344625f0c.tar.gz crupest-bc845e54167018065ffc11c9df64711344625f0c.tar.bz2 crupest-bc845e54167018065ffc11c9df64711344625f0c.zip | |
Try with no network.
| -rw-r--r-- | template/docker-compose.yaml.template | 23 | 
1 files changed, 0 insertions, 23 deletions
| diff --git a/template/docker-compose.yaml.template b/template/docker-compose.yaml.template index f5c6bb9..3408d7e 100644 --- a/template/docker-compose.yaml.template +++ b/template/docker-compose.yaml.template @@ -9,8 +9,6 @@ services:        - TIMELINE_DisableAutoBackup=true      volumes:        - ./data/timeline:/root/timeline -    networks: -      - timeline-network    code-server:      pull_policy: build @@ -25,8 +23,6 @@ services:      volumes:        - ./data/code-server:/data        - code-server-home:/root -    networks: -      - code-server-network    crupest-blog:      pull_policy: build @@ -60,12 +56,6 @@ services:        - "./data/certbot/certs:/etc/letsencrypt:ro"        - "./data/certbot/webroot:/srv/acme:ro"        - "blog-public:/srv/blog:ro" -    networks: -      - timeline-network -      - code-server-network -      - auto-certbot-network -      - crupest-api-network -      - v2ray-network    crupest-api:      pull_policy: build @@ -78,8 +68,6 @@ services:      container_name: crupest-api      volumes:        - "./crupest-api-config.json:/crupest-api-config.json:ro" -    networks: -      - crupest-api-network    v2ray:      image: v2fly/v2fly-core:latest @@ -89,8 +77,6 @@ services:      restart: on-failure:3      volumes:        - "./v2ray-config.json:/etc/v2fly/config.json:ro" -    networks: -      - v2ray-network    auto-certbot:      pull_policy: build @@ -115,8 +101,6 @@ services:        # map docker socket to allow auto-certbot to restart nginx        - "/var/run/docker.sock:/var/run/docker.sock"      restart: on-failure:3 -    networks: -      - auto-certbot-network    auto-backup:      pull_policy: build @@ -170,13 +154,6 @@ services:        timeout: 3s        retries: 0 -networks: -  timeline-network: -  code-server-network: -  auto-certbot-network: -  crupest-api-network: -  v2ray-network: -  volumes:    blog-public: | 
