23 lines
477 B
YAML
23 lines
477 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
admin-web:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
container_name: asset-helper-admin
|
|
ports:
|
|
- "${ADMIN_WEB_PORT:-20080}:80"
|
|
networks:
|
|
- asset-helper-network
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:80/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
|
|
networks:
|
|
asset-helper-network:
|
|
driver: bridge
|