feat(docker): add docker compose file for development environment

This commit is contained in:
Kentai Radiquum 2024-04-29 23:31:31 +05:00
parent 47c6ea5d08
commit 023e0c3a0b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 85 additions and 2 deletions

View file

@ -1,5 +1,4 @@
requests == 2.31.0
fastAPI == 0.110.1
uvicorn[standard]
pre-commit
python-multipart

54
docker-compose.dev.yml Normal file
View file

@ -0,0 +1,54 @@
services:
frontend:
container_name: "AniX-frontend"
build:
context: ./frontend
dockerfile: ../docker/frontend.dev.Dockerfile
labels:
- "traefik.enable=true"
- "traefik.http.routers.anix-frontend.rule=Host(`127.0.0.1`)"
- "traefik.http.routers.anix-frontend.entrypoints=web"
expose:
- 3000
develop:
watch:
- action: sync
path: ./frontend
target: /app
ignore:
- node_modules/
- .next/
- action: rebuild
path: ./frontend/package.json
backend:
container_name: "AniX-backend"
build:
context: ./backend
dockerfile: ../docker/backend.dev.Dockerfile
labels:
- "traefik.enable=true"
- "traefik.http.routers.anix-backend.rule=Host(`127.0.0.1`) && PathPrefix(`/api`)"
- "traefik.http.routers.anix-backend.entrypoints=web"
expose:
- 8000
develop:
watch:
- action: sync
path: ./backend
target: /app
- action: rebuild
path: ./backend/requirements.txt
traefik:
image: "traefik:v3.0"
container_name: "AniX-traefik"
command:
#- "--log.level=DEBUG"
- "--api.dashboard=false"
- "--api.insecure=false"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entryPoints.web.address=:80"
ports:
- "80:80"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"

View file

@ -0,0 +1,18 @@
# The first instruction is what image we want to base our container on
# We Use an official Python runtime as a parent image
FROM python:3.9
# The enviroment variable ensures that the python output is set straight
# to the terminal with out buffering it first
ENV PYTHONUNBUFFERED 1
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . .
# Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt
CMD ["uvicorn", "main:app", "--reload", "--host", "0.0.0.0"]

View file

@ -0,0 +1,12 @@
FROM node:21-alpine
WORKDIR /app
ADD package.json .
RUN npm update -g npm --loglevel verbose
COPY . .
RUN npm install --loglevel verbose
# RUN npm ci --no-audit --maxsockets 1
CMD ["npm", "run", "dev"]

View file

@ -16,11 +16,11 @@
"material-dynamic-colors": "^1.1.0",
"react": "^18",
"react-dom": "^18",
"next": "^14.2.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"eslint-config-next": "14.2.2",
"next": "^14.2.2",
"postcss": "^8"
}
}