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