Skip to content

Commit a27cc1d

Browse files
committed
addig a local build compose file
1 parent 706a55f commit a27cc1d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docker-compose-local.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
pw-backend:
3+
build:
4+
context: .
5+
container_name: pw-backend
6+
restart: always
7+
ports:
8+
- 7070:7070
9+
env_file:
10+
- .env
11+
healthcheck:
12+
test: ['CMD', 'curl', '-f', 'http://localhost:7070']
13+
interval: 30s
14+
timeout: 10s
15+
retries: 5
16+
start_period: 60s

0 commit comments

Comments
 (0)