0%

作者:李旭光
引用请标明出处

Network in Compose 在Docker Compose中配置网络

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: "3.9"

services:
proxy:
build: ./proxy
networks:
- actsnetwork
app:
build: ./app
networks:
- actsnetwork
db:
image: postgres
networks:
- testnetwork

networks:
actsnetwork:
name: testnetwork