first successful export
This commit is contained in:
24
docker-compose.yaml
Normal file
24
docker-compose.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
services:
|
||||
frontend:
|
||||
image: node:20-alpine
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- ./frontend:/app
|
||||
- /app/node_modules
|
||||
ports:
|
||||
- "5173:5173"
|
||||
command: sh -c "npm install && npm run dev -- --host"
|
||||
depends_on:
|
||||
- app
|
||||
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: DockerFile
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- aroll_tmp:/tmp/aroll-uploads
|
||||
|
||||
volumes:
|
||||
aroll_tmp:
|
||||
Reference in New Issue
Block a user