Compose.yml hinzugefügt
This commit is contained in:
19
Compose.yml
Normal file
19
Compose.yml
Normal file
@ -0,0 +1,19 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
podchaser-abs-provider:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: podchaser-abs-provider
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- "3000:3000" # host:container
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "-qO-", "http://localhost:3000/"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
Reference in New Issue
Block a user