initial commit

This commit is contained in:
2026-05-06 11:28:41 +02:00
commit 39ee31debb
23 changed files with 1645 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
services:
api:
build:
context: .
dockerfile: docker/Dockerfile.api
volumes:
- .:/app
- data:/app/data
depends_on:
- redis
nginx:
image: nginx:alpine
ports:
- "8080:80"
volumes:
- .:/app
- ./docker/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- api
worker:
build:
context: .
dockerfile: docker/Dockerfile.php
volumes:
- .:/app
- /var/log:/host/logs:ro
- data:/app/data
depends_on:
- redis
command: ["php", "bin/consume", "--daemon"]
redis:
image: redis:7-alpine
volumes:
data: