add dockerfile and paths

This commit is contained in:
acidmikk 2023-11-21 18:06:13 +04:00
parent a0565f8b4c
commit d45fcb79c1
8 changed files with 41 additions and 0 deletions

View File

View File

@ -0,0 +1,5 @@
FROM python:3.11
COPY . .
COPY var/data /var/data
COPY var/result /var/result
CMD ["python", "app.py"]

View File

@ -0,0 +1,6 @@
def main():
pass
if __name__ == "__main__":
main()

View File

@ -0,0 +1,5 @@
FROM python:3.11
COPY . .
COPY var/data /var/data
COPY var/result /var/result
CMD ["python", "app.py"]

View File

@ -0,0 +1,6 @@
def main():
pass
if __name__ == "__main__":
main()

View File

@ -0,0 +1,19 @@
version: "3"
services:
worker-1:
build:
context: /app1
dockerfile: Dockerfile
volumes:
- ./data:/var/data
- ./result:/var/result
worker-2:
depends_on:
- worker-1
build:
context: /app2
dockerfile: Dockerfile
volumes:
- ./result:/var/data
- ./result:/var/result