mirror of
https://github.com/arthur-pbty/chrono.git
synced 2026-06-03 15:07:21 +02:00
ab4b8b2924
- 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
24 lines
330 B
YAML
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 |