Files
papryk-com/docker-compose.yml
Patryk Koreń ff707dd762 cos tam dziala
2026-07-06 23:17:37 +02:00

29 lines
530 B
YAML

services:
backend:
build: ./back
container_name: papryk-backend
expose:
- "3000"
environment:
- NODE_ENV=development
frontend:
build:
context: ./front
args:
VITE_API_URL: "http://localhost/api"
container_name: papryk-frontend
expose:
- "5173"
nginx:
image: nginx:alpine
container_name: papryk-nginx
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- frontend
- backend