This commit is contained in:
leehk 2025-04-11 15:11:34 +08:00
parent e1290aab01
commit c55b02deb7
2 changed files with 21 additions and 0 deletions

View File

@ -17,6 +17,12 @@ jobs:
contents: read
packages: write
steps:
- name: Check disk space before cleanup
run: df -h
- name: Clean up disk space
run: |
docker system prune -af
df -h
- name: Checkout
uses: actions/checkout@v3
with:

View File

@ -22,3 +22,18 @@ services:
environment:
- ENVIRONMENT=dev
- TESTING=0
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.local
container_name: frontend
platform: linux/amd64
volumes:
- ./frontend:/usr/src/app
ports:
- "3004:5173"
depends_on:
- backend
environment:
LOG_LEVEL: "DEBUG"