First commit

This commit is contained in:
charles-gauthereau
2024-10-19 15:55:51 +02:00
commit 1069b2c3ad
99 changed files with 9718 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
services:
backup_agent:
container_name: backup_agent
build:
context: ../../
dockerfile: docker/dockerfile/prod/Dockerfile
ports:
- 8888:80
+5
View File
@@ -0,0 +1,5 @@
services:
backup_agent:
image: rambok/backup-agent:rc1
ports:
- 8885:80
+22
View File
@@ -0,0 +1,22 @@
services:
backend:
build:
context: ../../backend
dockerfile: ../docker/dockerfile/dev/backend/Dockerfile
volumes:
- ../../backend:/src
command: uvicorn main:app --reload --host 0.0.0.0 --port 80
ports:
- 8888:80
frontend:
build:
context: ../../frontend
dockerfile: ../docker/dockerfile/dev/frontend/Dockerfile
ports:
- 8887:80
volumes:
- ../../frontend:/app
- /app/node_modules