diff --git a/.env.example b/.env.example index e948754..0227feb 100644 --- a/.env.example +++ b/.env.example @@ -4,6 +4,7 @@ APP_KEY= APP_DEBUG=false APP_TIMEZONE=UTC APP_URL=http://localhost +APP_PORT=8000 APP_LOCALE=en APP_FALLBACK_LOCALE=en diff --git a/docker-compose.yml b/docker-compose.yml index 1dbc490..ee6c259 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,7 +23,7 @@ services: restart: unless-stopped tty: true ports: - - "8000:80" + - "${APP_PORT:-8000}:80" volumes: - ./docker/nginx.conf:/etc/nginx/conf.d/default.conf - .:/var/www/app:delegated