initial commit

This commit is contained in:
2026-05-29 17:12:19 +02:00
commit a8593afa61
24 changed files with 1322 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
stripe-stub:
build: .
image: stripe-stub:1.0.0
container_name: stripe-stub
restart: unless-stopped
env_file: .env
networks:
- edge
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request,sys; sys.exit(0 if urllib.request.urlopen('http://127.0.0.1:4242/health').status==200 else 1)"]
interval: 30s
timeout: 5s
retries: 3
ports:
- "127.0.0.1:4242:4242"
networks:
edge:
external: true