Files
chrono/docker-compose.yml
Puechberty Arthur ab4b8b2924 chore: update dependencies and add postcss configuration
- Updated Next.js to version 16.2.4
- Updated Tailwind CSS and PostCSS to their latest versions
- Added autoprefixer to PostCSS configuration
- Created a .dockerignore file to exclude unnecessary files from Docker context
2026-04-25 22:34:39 +02:00

24 lines
330 B
YAML

services:
app:
container_name: chrono-app
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
env_file:
- .env
ports:
- "${WEB_PORT:-3000}:3000"
environment:
- PORT=3000
- HOSTNAME=0.0.0.0
networks:
- app
networks:
app:
driver: bridge