mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat(docker): add docker compose file for development environment
This commit is contained in:
parent
47c6ea5d08
commit
023e0c3a0b
5 changed files with 85 additions and 2 deletions
|
@ -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
54
docker-compose.dev.yml
Normal 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"
|
18
docker/backend.dev.Dockerfile
Normal file
18
docker/backend.dev.Dockerfile
Normal 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"]
|
12
docker/frontend.dev.Dockerfile
Normal file
12
docker/frontend.dev.Dockerfile
Normal 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"]
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue