23 lines
436 B
YAML
23 lines
436 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
web:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
container_name: tianxuan-company
|
||
|
|
ports:
|
||
|
|
- "8801:80"
|
||
|
|
restart: unless-stopped
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "wget", "-q", "--spider", "http://localhost/"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 10s
|
||
|
|
retries: 3
|
||
|
|
start_period: 10s
|
||
|
|
networks:
|
||
|
|
- tianxuan-network
|
||
|
|
|
||
|
|
networks:
|
||
|
|
tianxuan-network:
|
||
|
|
driver: bridge
|